You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2021/04/24 17:59:37 UTC

[jspwiki] branch master updated: transform constants to global variables - hopefully fixes the build this time

This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git


The following commit(s) were added to refs/heads/master by this push:
     new d3407ca  transform constants to global variables - hopefully fixes the build this time
d3407ca is described below

commit d3407ca51470ce60367616d2fbe6f9d956272b6a
Author: Juan Pablo Santos Rodríguez <ju...@gmail.com>
AuthorDate: Sat Apr 24 19:59:11 2021 +0200

    transform constants to global variables - hopefully fixes the build this time
---
 Jenkinsfile | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e762750..45ac47d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,16 +17,17 @@
  * under the License.
  */
 
-try {
-    def buildRepo = 'https://github.com/apache/jspwiki'
-    def siteRepo = 'https://gitbox.apache.org/repos/asf/jspwiki-site.git'
-    def creds = '9b041bd0-aea9-4498-a576-9eeb771411dd'
+buildRepo = 'https://github.com/apache/jspwiki'
+siteRepo = 'https://gitbox.apache.org/repos/asf/jspwiki-site.git'
+creds = '9b041bd0-aea9-4498-a576-9eeb771411dd'
+
+asfsite = 'asf-site'
+build = 'build'
+buildJdk = 'jdk_11_latest'
+buildMvn = 'maven_3_latest'
+jbake = 'jbake'
 
-    def asfsite = 'asf-site'
-    def build = 'build'
-    def buildJdk = 'jdk_11_latest'
-    def buildMvn = 'maven_3_latest'
-    def jbake = 'jbake'
+try {
     def pom
 
     node( 'ubuntu' ) {