forked from I2P_Developers/i2p.i2p
20 lines
292 B
Groovy
20 lines
292 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.+'
|
|
}
|
|
|
|
sourceCompatibility = 1.6
|
|
jar {
|
|
manifest {
|
|
attributes 'Implementation-Version': '0.9.23-18'
|
|
}
|
|
}
|
|
}
|