wip on pinger

This commit is contained in:
Zlatin Balevsky
2018-07-09 23:26:47 +01:00
parent beb848ee65
commit 949dc76a84
5 changed files with 22 additions and 13 deletions

View File

@ -1,4 +1,16 @@
allprojects {
subprojects {
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
}
repositories {
mavenCentral()
}

View File

@ -1,13 +1 @@
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'

1
pinger/build.gradle Normal file
View File

@ -0,0 +1 @@
mainClassName = 'com.muwire.pinger.Pinger'

View File

@ -0,0 +1,7 @@
package com.muwire.pinger
public class Pinger {
public static void main(String []args) {
println "ping"
}
}

View File

@ -1 +1,2 @@
include 'pinger'
include 'host-cache'