Files
i2p.i2p/core/build.gradle

27 lines
362 B
Groovy
Raw Normal View History

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
}