Files
i2p.i2p/apps/ministreaming/build.gradle
2019-02-17 01:27:05 +00:00

35 lines
454 B
Groovy

plugins {
id 'java-library'
}
archivesBaseName = 'mstreaming'
sourceSets {
main {
java {
srcDir 'java/src'
}
}
test {
java {
srcDir 'java/test/junit'
}
}
}
dependencies {
api project(':core')
}
configurations {
tests
}
task testJar(type: Jar) {
baseName = 'mstreaming-test'
dependsOn classes
from sourceSets.test.output
}
artifacts {
tests testJar
}