Skip to content

Commit 609e041

Browse files
authored
Updating version that was missed before, using OpenJDK11 in build script (#69)
* Updating version * Adding missing quotation * Update Java in Jenkinsfile * Update to OpenJDK11
1 parent 2215515 commit 609e041

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pipeline {
2525
maven('maven')
2626
git('git')
2727
ant('Ant')
28-
jdk('JDK11')
28+
jdk('OpenJDK11')
2929
}
3030

3131
parameters {
@@ -94,8 +94,8 @@ pipeline {
9494
def git = tool('git')
9595
def gitCommitId = sh(script: "'${git}' rev-parse HEAD", returnStdout: true).trim()
9696

97-
withAnt(ant: 'Ant', jdk: 'JDK11') {
98-
withMaven(maven: 'maven', jdk: 'JDK11') {
97+
withAnt(ant: 'Ant', jdk: 'OpenJDK11') {
98+
withMaven(maven: 'maven', jdk: 'OpenJDK11') {
9999
//---[ If an explicit version was specified, override source's versions
100100
if (!params.DEPLOY_VERSION.isEmpty()) {
101101
sh(script: "ant -buildfile ./builds/build-setprojectversion.xml \"-Dgocwebtemplate.build.version=${params.DEPLOY_VERSION}\"")

gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public abstract class Constants {
1313

1414
public static final String CACHE_KEY_STATICFILES_PREFIX = "GoC.Template.CacheKey";
1515

16-
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "4.0.3";
16+
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "4.0.4";
1717

1818
public static final String CDTS_DEFAULT_VERSION = "v5_0_4";
1919

0 commit comments

Comments
 (0)