mirror of
https://github.com/corda/corda.git
synced 2024-12-26 16:11:12 +00:00
9148d0529a
* Export locations of both deterministic rt.jar and its JDK_HOME as properties. * Refactor deterministic Java/Kotlin configuration into a script plugin.
17 lines
486 B
Groovy
17 lines
486 B
Groovy
apply from: '../../../deterministic.gradle'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
compileOnly project(path: ':core-deterministic', configuration: 'runtimeArtifacts')
|
|
compileOnly project(path: ':serialization-deterministic', configuration: 'runtimeArtifacts')
|
|
compileOnly "junit:junit:$junit_version"
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
if (project.hasProperty("deterministic_idea_sdk")) {
|
|
jdkName project.property("deterministic_idea_sdk") as String
|
|
}
|
|
}
|
|
}
|