Added groovy snip.

This commit is contained in:
ujihisa 2013-06-16 16:20:23 -07:00
parent 5c4a1d0c3b
commit 08fccee8e7
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,29 @@
snippet helloworld
options head
package ${1:com.github.ujihisa}
class ${2:TARGET} {
public static void main(String[] args) {
println("Hello world!")
}
}
snippet gradle
options head
apply plugin: 'groovy'
apply plugin: 'maven'
repositories {
mavenCentral()
${2:mavenLocal()}
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.1.1'
//testCompile group: 'junit', name: 'junit', version: '4.+'
}
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
manifest.mainAttributes("Main-Class": "${1:com.github.`$USER`.}")

View File

@ -722,6 +722,9 @@ A: You can use |:NeoSnippetSource| for it.
==============================================================================
CHANGELOG *neosnippet-changelog*
2013-06-16
- Added groovy snip.
2013-06-10
- Added sshconfig snip.
- Added Makefile snip.