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 <lukaszlen...@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' } } }