forked from I2P_Developers/i2p.i2p
24 lines
442 B
Groovy
24 lines
442 B
Groovy
apply plugin: 'java-library'
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'java/src'
|
|
}
|
|
}
|
|
test {
|
|
java {
|
|
srcDir 'java/test/junit'
|
|
exclude {
|
|
it.name.endsWith('IT.java')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(':core')
|
|
api project(':apps:ministreaming')
|
|
testImplementation project(path: ':apps:ministreaming', configuration: 'tests')
|
|
}
|