Skip to content

Commit 19487a8

Browse files
authored
Merge pull request #355 from rtyler/openssl-323
Ensure that we're testing on JDK11 and later capable JRubies
2 parents d6c78b6 + 1a24da1 commit 19487a8

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ script:
66
- ./gradlew -S -i --max-workers=2 --no-daemon clean check build --scan
77
jdk:
88
- openjdk8
9+
- openjdk11
910
os:
1011
- linux
1112
cache:

base-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project.afterEvaluate {
2222
// --- up to here
2323

2424
ext {
25-
olderJRubyVersion = '9.0.1.0'
25+
olderJRubyVersion = '9.2.1.0'
2626
slimVersion = '2.0.2'
2727
leafyVersion = '0.4.0'
2828
}

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,12 @@ subprojects {
7171
}
7272

7373
gradleTest {
74-
versions '3.0', '3.5', '4.1', '4.7', '4.9'
74+
// https://github.com/jruby-gradle/jruby-gradle-plugin/issues/346
75+
if (JavaVersion.current().java11) {
76+
versions '5.0', '5.4.1'
77+
} else {
78+
versions '4.2', '4.10.2', '5.3.1'
79+
}
7580
dependsOn jar
7681
}
7782

0 commit comments

Comments
 (0)