2017-11-26 23:20:24 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
2014-06-24 05:37:53 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDir 'java/src'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir 'java/test/junit'
|
2017-12-02 20:58:58 +00:00
|
|
|
exclude {
|
|
|
|
it.name.endsWith('IT.java')
|
|
|
|
}
|
2014-06-24 05:37:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-11-26 23:20:24 +00:00
|
|
|
api project(':core')
|
|
|
|
api project(':apps:ministreaming')
|
|
|
|
testImplementation project(path: ':apps:ministreaming', configuration: 'tests')
|
2014-06-24 05:37:53 +00:00
|
|
|
}
|