archivesBaseName = 'i2p'
sourceSets {
main {
java {
srcDir 'java/src'
}
test {
srcDir 'java/test/junit'
configurations {
tests
task testJar(type: Jar) {
baseName = 'i2p-test'
dependsOn classes
from sourceSets.test.output
artifacts {
tests testJar