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