forked from WebGoat/WebGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing install to package to include lessons as well
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ jdk: | |
install: "/bin/true" | ||
script: | ||
- mvn clean install | ||
- if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then mvn "-Dbuild.number=$TRAVIS_BUILD_NUMBER" clean install; else mvn clean install; fi | ||
- if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then mvn "-Dbuild.number=$TRAVIS_BUILD_NUMBER" clean package; else mvn clean package; fi | ||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
|
@@ -44,6 +44,6 @@ addons: | |
description: "Coverity Scan from Travis CI Build Automation" | ||
notification_email: [email protected] | ||
build_command_prepend: "mvn clean" | ||
build_command: "mvn -DskipTests=true install" | ||
build_command: "mvn -DskipTests=true package" | ||
branch_pattern: coverity_scan | ||
|