forked from I2P_Developers/i2p.i2p
33 lines
629 B
Groovy
33 lines
629 B
Groovy
plugins {
|
|
id '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')
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Specification-Title': 'I2P Streaming Implementation'
|
|
attributes 'Implementation-Title': 'I2P Java Streaming Implementation'
|
|
}
|
|
}
|