propagate from branch 'i2p.i2p' (head 707603fcdd707b7521d213a82287d64520e18d37)

to branch 'i2p.i2p.str4d.test2' (head d44865c44b6a31ff2e3d5bf9a5e98a6f28d80e5b)
This commit is contained in:
str4d
2017-10-31 04:29:54 +00:00
24 changed files with 781 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
archivesBaseName = 'mstreaming'
sourceSets {
main {
java {
srcDir 'java/src'
}
}
test {
java {
srcDir 'java/test/junit'
}
}
}
dependencies {
compile project(':core')
}
configurations {
tests
}
task testJar(type: Jar) {
baseName = 'mstreaming-test'
dependsOn classes
from sourceSets.test.output
}
artifacts {
tests testJar
}