forked from I2P_Developers/i2p.i2p
propagate from branch 'i2p.i2p' (head 707603fcdd707b7521d213a82287d64520e18d37)
to branch 'i2p.i2p.str4d.test2' (head d44865c44b6a31ff2e3d5bf9a5e98a6f28d80e5b)
This commit is contained in:
30
apps/ministreaming/build.gradle
Normal file
30
apps/ministreaming/build.gradle
Normal 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
|
||||
}
|
Reference in New Issue
Block a user