mirror of https://github.com/zlatinb/muwire
hello groovy
parent
b8ed36a1fd
commit
764de8d3ad
|
@ -0,0 +1,5 @@
|
|||
allprojects {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
apply plugin: 'groovy'
|
||||
apply plugin: 'application'
|
||||
|
||||
dependencies {
|
||||
compile 'net.i2p:i2p:0.9.35'
|
||||
compile 'org.codehaus.groovy:groovy-all:2.5.0'
|
||||
}
|
||||
|
||||
compileGroovy {
|
||||
groovyOptions.optimizationOptions.indy = true
|
||||
}
|
||||
|
||||
mainClassName = 'com.muwire.hostcache.HostCache'
|
|
@ -0,0 +1,9 @@
|
|||
package com.muwire.hostcache
|
||||
|
||||
public class HostCache {
|
||||
|
||||
public static void main(String[] args) {
|
||||
print "Hello world"
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
include 'host-cache'
|
Loading…
Reference in New Issue