Files
i2p.i2p/build.gradle

30 lines
647 B
Groovy
Raw Normal View History

subprojects {
apply plugin: 'java'
2014-06-25 02:50:24 +00:00
repositories {
jcenter()
2014-06-25 02:50:24 +00:00
}
dependencies {
testCompile 'junit:junit:4.+'
2017-10-31 06:13:24 +00:00
testCompile 'org.hamcrest:hamcrest-library:1.3'
2014-06-25 02:50:24 +00:00
}
jar {
manifest {
attributes 'Implementation-Version': '0.9.31-7'
}
}
sourceCompatibility = 1.7
// Set bootClasspath=/path/to/rt.jar:/path/to/jce.jar in gradle.properties if needed
if (bootClasspath) {
tasks.withType(AbstractCompile, { AbstractCompile ac ->
ac.options.bootstrapClasspath = files(bootClasspath)
})
}
}
//apply from: file('gradle/update.gradle')