forked from I2P_Developers/i2p.i2p
23 lines
386 B
Groovy
23 lines
386 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.+'
|
|
testCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
}
|
|
|
|
sourceCompatibility = 1.6
|
|
jar {
|
|
manifest {
|
|
attributes 'Implementation-Version': '0.9.31-7'
|
|
}
|
|
}
|
|
}
|
|
|
|
//apply from: file('gradle/update.gradle')
|