Added groovy snip.
This commit is contained in:
parent
5c4a1d0c3b
commit
08fccee8e7
29
autoload/neosnippet/snippets/groovy.snip
Normal file
29
autoload/neosnippet/snippets/groovy.snip
Normal 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`.}")
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user