2014-06-24 05:18:16 +00:00
|
|
|
archivesBaseName = 'i2p'
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDir 'java/src'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir 'java/test/junit'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-25 02:50:24 +00:00
|
|
|
configurations {
|
|
|
|
tests
|
|
|
|
}
|
|
|
|
task testJar(type: Jar) {
|
|
|
|
baseName = 'i2p-test'
|
|
|
|
dependsOn classes
|
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
2014-06-24 05:18:16 +00:00
|
|
|
}
|