mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-04-03 17:55:44 +00:00
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')
|
|
}
|