Files
i2p.i2p-bote/build.gradle
2016-08-22 14:20:44 +00:00

31 lines
655 B
Groovy

buildscript {
dependencies {
classpath files('gradle/libs/gradle-witness.jar')
}
}
subprojects {
apply plugin: 'witness'
apply plugin: 'java'
repositories {
jcenter()
}
version = '0.4.3'
jar {
manifest {
attributes 'Implementation-Version': version
}
}
sourceCompatibility = 1.6
targetCompatibility = 1.6
// Set bootClasspath=/path/to/rt.jar:/path/to/jce.jar in gradle.properties if needed
if (bootClasspath) {
project.tasks.withType(AbstractCompile, { AbstractCompile ac ->
ac.options.bootClasspath = bootClasspath
})
}
}