wip on pinger
This commit is contained in:
14
build.gradle
14
build.gradle
@ -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()
|
||||
}
|
||||
|
@ -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
1
pinger/build.gradle
Normal file
@ -0,0 +1 @@
|
||||
mainClassName = 'com.muwire.pinger.Pinger'
|
7
pinger/src/main/groovy/com/muwire/pinger/Pinger.groovy
Normal file
7
pinger/src/main/groovy/com/muwire/pinger/Pinger.groovy
Normal file
@ -0,0 +1,7 @@
|
||||
package com.muwire.pinger
|
||||
|
||||
public class Pinger {
|
||||
public static void main(String []args) {
|
||||
println "ping"
|
||||
}
|
||||
}
|
@ -1 +1,2 @@
|
||||
include 'pinger'
|
||||
include 'host-cache'
|
||||
|
Reference in New Issue
Block a user