We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e5551 commit 532d6b2Copy full SHA for 532d6b2
build.gradle
@@ -18,6 +18,10 @@ repositories {
18
dependencies {
19
compile 'com.google.code.findbugs:jsr305:3.0.0'
20
testCompile 'junit:junit:4.11'
21
+ def javaVersion = org.gradle.util.VersionNumber.parse( System.properties['java.version'] ).getMajor()
22
+ if( javaVersion >= 15 ) {
23
+ testRuntime 'org.mozilla:rhino:+'
24
+ }
25
}
26
27
sourceCompatibility = 1.7
0 commit comments