Files
i2p.i2p/build.gradle

33 lines
805 B
Groovy
Raw Normal View History

subprojects {
apply plugin: 'java'
2017-11-02 19:04:40 +00:00
apply plugin: 'eclipse'
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'
2017-11-02 20:15:48 +00:00
testCompile 'org.mockito:mockito-core:2.11.0'
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
2017-11-02 20:15:48 +00:00
// Please check if you forgot to check in gradle.properties --zab
// if (bootClasspath) {
// tasks.withType(AbstractCompile, { AbstractCompile ac ->
// ac.options.bootstrapClasspath = files(bootClasspath)
// })
// }
}
//apply from: file('gradle/update.gradle')