File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,26 @@ language: java
3
3
jdk :
4
4
- oraclejdk8
5
5
6
- script : mvn install --batch-mode --show-version
6
+ # stick with the Travis CI default of install=` mvn install` and script=`mvn test`
7
7
8
8
deploy :
9
+ # deploy master branch to snapshot repository
9
10
- provider : script
10
- script : bash src/main/build/mvndeploy .sh
11
+ script : bash src/main/build/mvn-deploy .sh
11
12
skip_cleanup : true
12
13
on :
13
14
repo : fxnn/brainfuck
14
15
branch : master
16
+ # deploy tags to release repository
15
17
- provider : script
16
- script : bash src/main/build/mvndeploy .sh
18
+ script : bash src/main/build/mvn-deploy .sh
17
19
skip_cleanup : true
18
20
on :
19
21
repo : fxnn/brainfuck
20
22
tags : true
23
+ # deploy Jacoco test results to coveralls
21
24
- provider : script
22
- script : bash src/main/build/jacoco -report.sh
25
+ script : bash src/main/build/coveralls -report.sh
23
26
24
27
cache :
25
28
directories :
File renamed without changes.
Original file line number Diff line number Diff line change 21
21
22
22
echo " Deploying to repository"
23
23
echo
24
- mvn deploy -P sign,build-extras -- settings $DIR /mvnsettings .xml
24
+ mvn deploy -P sign,build-extras -DskipTests=true -- settings $DIR /mvn-settings .xml
25
25
echo
File renamed without changes.
You can’t perform that action at this time.
0 commit comments