I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 49d970c5 authored by str4d's avatar str4d
Browse files

Fix compilation without bootstrap classpath set

parent e34ab0b7
No related branches found
No related tags found
No related merge requests found
...@@ -20,13 +20,12 @@ subprojects { ...@@ -20,13 +20,12 @@ subprojects {
} }
sourceCompatibility = 1.7 sourceCompatibility = 1.7
// Set bootClasspath=/path/to/rt.jar:/path/to/jce.jar in gradle.properties if needed // Set i2pBootClasspath=/path/to/rt.jar:/path/to/jce.jar in ~/.gradle/gradle.properties if needed
// Please check if you forgot to check in gradle.properties --zab if (i2pBootClasspath) {
// if (bootClasspath) { tasks.withType(AbstractCompile, { AbstractCompile ac ->
// tasks.withType(AbstractCompile, { AbstractCompile ac -> ac.options.bootstrapClasspath = files(i2pBootClasspath)
// ac.options.bootstrapClasspath = files(bootClasspath) })
// }) }
// }
} }
//apply from: file('gradle/update.gradle') //apply from: file('gradle/update.gradle')
# Override these in ~/.gradle/gradle.properties if necessary
i2pBootClasspath=
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment