Skip to content

Commit f6f351f

Browse files
committed
Remove Unsupported JDKs
The JDKs 9 and 10 are no longer supported by Oracle and the CAs are not up to date, so removing from the build. 18:13:02 * What went wrong: 18:13:02 Execution failed for task ':buildSrc:compileJava'. 18:13:02 > Could not resolve all files for configuration ':buildSrc:compileClasspath'. 18:13:02 > Could not resolve com.thaiopensource:trang:20091111. 18:13:02 Required by: 18:13:02 project :buildSrc 18:13:02 > Could not resolve com.thaiopensource:trang:20091111. 18:13:02 > Could not get resource 'https://repo.maven.apache.org/maven2/com/thaiopensource/trang/20091111/trang-20091111.pom'. 18:13:02 > Could not GET 'https://repo.maven.apache.org/maven2/com/thaiopensource/trang/20091111/trang-20091111.pom'. 18:13:02 > sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 18:13:02 > Could not resolve net.sourceforge.saxon:saxon:9.1.0.8. 18:13:02 Required by: 18:13:02 project :buildSrc 18:13:02 > Could not resolve net.sourceforge.saxon:saxon:9.1.0.8. 18:13:02 > Could not get resource 'https://repo.maven.apache.org/maven2/net/sourceforge/saxon/saxon/9.1.0.8/saxon-9.1.0.8.pom'. 18:13:02 > Could not GET 'https://repo.maven.apache.org/maven2/net/sourceforge/saxon/saxon/9.1.0.8/saxon-9.1.0.8.pom'. 18:13:02 > sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to request
1 parent dbe2ef8 commit f6f351f

File tree

1 file changed

+0
-36
lines changed

1 file changed

+0
-36
lines changed

Jenkinsfile

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -74,42 +74,6 @@ try {
7474
}
7575
}
7676
},
77-
jdk9: {
78-
stage('JDK 9') {
79-
node {
80-
checkout scm
81-
sh "git clean -dfx"
82-
try {
83-
withCredentials([ARTIFACTORY_CREDENTIALS]) {
84-
withEnv(["JAVA_HOME=${ tool 'jdk9' }"]) {
85-
sh "./gradlew $JENKINS_USER clean test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --refresh-dependencies --no-daemon --stacktrace"
86-
}
87-
}
88-
} catch(Exception e) {
89-
currentBuild.result = 'FAILED: jdk9'
90-
throw e
91-
}
92-
}
93-
}
94-
},
95-
jdk10: {
96-
stage('JDK 10') {
97-
node {
98-
checkout scm
99-
sh "git clean -dfx"
100-
try {
101-
withCredentials([ARTIFACTORY_CREDENTIALS]) {
102-
withEnv(["JAVA_HOME=${ tool 'jdk10' }"]) {
103-
sh "./gradlew $JENKINS_USER clean test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --refresh-dependencies --no-daemon --stacktrace"
104-
}
105-
}
106-
} catch(Exception e) {
107-
currentBuild.result = 'FAILED: jdk10'
108-
throw e
109-
}
110-
}
111-
}
112-
},
11377
jdk11: {
11478
stage('JDK 11') {
11579
node {

0 commit comments

Comments
 (0)