We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88dd13a commit c8f8233Copy full SHA for c8f8233
1 file changed
.travis.yml
@@ -7,15 +7,15 @@ before_install:
7
- rm ~/.m2/settings.xml
8
9
install:
10
- - mvn install -DskipTests=true
+ - mvn -T 1C install -DskipTests=true
11
12
script:
13
- - mvn test; export MAVEN_RESULT=$?
+ - mvn -T 1C test; export MAVEN_RESULT=$?
14
- if [ "$MAVEN_RESULT" -ne 0 ]; then exit 1; fi
15
- - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn clean deploy --quiet --settings settings.xml; fi
+ - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn -T 1C clean deploy --quiet --settings settings.xml; fi
16
17
after_success:
18
- - mvn clean test jacoco:report coveralls:report
+ - mvn -T 1C clean test jacoco:report coveralls:report
19
20
21
notifications:
0 commit comments