You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardExpand all lines: Jenkinsfile
-36Lines changed: 0 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -74,42 +74,6 @@ try {
74
74
}
75
75
}
76
76
},
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"
0 commit comments