mirror of https://github.com/zlatinb/muwire
wip on pinger
parent
beb848ee65
commit
949dc76a84
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'
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
mainClassName = 'com.muwire.pinger.Pinger'
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue