forked from I2P_Developers/i2p.i2p
33 lines
449 B
Groovy
33 lines
449 B
Groovy
apply plugin: '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
|
|
}
|