You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2019/08/29 07:00:20 UTC

[struts] branch docker-build updated: Uses wrapper instead of clean mvn command

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

lukaszlenart pushed a commit to branch docker-build
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/docker-build by this push:
     new 3305fcb  Uses wrapper instead of clean mvn command
3305fcb is described below

commit 3305fcb768cb3639e6e9e9a586d3da0dbc90c51a
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Thu Aug 29 09:00:12 2019 +0200

    Uses wrapper instead of clean mvn command
---
 Jenkinsfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 2f2ad59..8c7ad64 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,8 +31,9 @@ pipeline {
       steps {
         sh 'echo $JAVA_HOME'
         sh 'echo $MAVEN_OPTS'
+        sh 'java --version'
         sh 'mvn -v'
-        sh 'mvn clean test -DskipWiki'
+        sh './mvnw clean test -DskipWiki'
       }
     }
   }