hello groovy

This commit is contained in:
Zlatin Balevsky
2018-07-09 21:17:20 +01:00
parent b8ed36a1fd
commit 764de8d3ad
4 changed files with 28 additions and 0 deletions

5
build.gradle Normal file
View File

@@ -0,0 +1,5 @@
allprojects {
repositories {
mavenCentral()
}
}

13
host-cache/build.gradle Normal file
View File

@@ -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'

View File

@@ -0,0 +1,9 @@
package com.muwire.hostcache
public class HostCache {
public static void main(String[] args) {
print "Hello world"
}
}

1
settings.gradle Normal file
View File

@@ -0,0 +1 @@
include 'host-cache'