2014-06-24 05:18:16 +00:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
2014-06-25 02:50:24 +00:00
|
|
|
repositories {
|
2017-10-31 06:13:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-06-24 05:18:16 +00:00
|
|
|
jar {
|
|
|
|
manifest {
|
2017-10-31 04:32:08 +00:00
|
|
|
attributes 'Implementation-Version': '0.9.31-7'
|
2014-06-24 05:18:16 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-31 08:35:04 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
2014-06-24 05:18:16 +00:00
|
|
|
}
|
2015-12-29 21:18:53 +00:00
|
|
|
|
|
|
|
//apply from: file('gradle/update.gradle')
|