2019-02-17 01:27:05 +00:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
}
|
2017-11-26 23:20:24 +00:00
|
|
|
|
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
|
|
|
}
|
2019-04-21 21:01:28 +00:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes 'Specification-Title': 'I2P Streaming Implementation'
|
|
|
|
attributes 'Implementation-Title': 'I2P Java Streaming Implementation'
|
|
|
|
}
|
|
|
|
}
|