Skip to content

Commit

Permalink
Use mvn install to deploy artifacts to local repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Apr 20, 2018
1 parent 7b795d9 commit 844e6e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [[ -z "$JENKINS_HOME" ]]; then
exit 1
fi

mvn verify || { echo "Build failed"; exit 1; }
mvn install || { echo "Build failed"; exit 1; }

rm -rf $JENKINS_HOME/plugins/warnings*

Expand Down
2 changes: 1 addition & 1 deletion go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [[ -z "$JENKINS_HOME" ]]; then
exit 1
fi

mvn verify || { echo "Build failed"; exit 1; }
mvn install || { echo "Build failed"; exit 1; }

rm -rf $JENKINS_HOME/plugins/warnings*

Expand Down
2 changes: 1 addition & 1 deletion skip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [[ -z "$JENKINS_HOME" ]]; then
exit 1
fi

mvn verify -DskipTests || { echo "Build failed"; exit 1; }
mvn install -DskipTests || { echo "Build failed"; exit 1; }

rm -rf $JENKINS_HOME/plugins/warnings*

Expand Down

0 comments on commit 844e6e1

Please sign in to comment.