Files
i2p.i2p/router/build.gradle

25 lines
544 B
Groovy
Raw Normal View History

sourceSets {
main {
java {
srcDir 'java/src'
}
}
test {
java {
srcDir 'java/test/junit'
}
}
}
dependencies {
compile project(':core')
2014-06-25 02:50:24 +00:00
testCompile project(path: ':core', configuration: 'tests')
}
jar {
manifest {
// so people with very old wrapper.config files will still work with Jetty 6
attributes 'Class-Path': 'jetty-i2p.jar jetty-java5-threadpool.jar jetty-rewrite-handler.jar jetty-sslengine.jar jetty-start.jar jetty-util.jar'
}
}