Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added multi threading to maven build.
  • Loading branch information
Jorropo committed Jun 5, 2018
1 parent aba0885 commit ab653b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -13,16 +13,16 @@ git:
matrix:
fast_finish: true
include:
- script: mvn checkstyle:check -B
- script: mvn checkstyle:check -B -T 1C
allow_failures:
- script: mvn checkstyle:check -B
- script: mvn checkstyle:check -B -T 1C


cache:
directories:
$HOME/.m2/

script: mvn package -B
script: mvn package -B -T 1C

addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Expand Up @@ -23,5 +23,5 @@ rem fi
rem fi

format.bat
mvn package -B
mvn package -B -T 1C
exit /b 0
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -27,7 +27,7 @@ if [ $? != 0 ] ; then
exit 10
fi
#Code build
mvn package -B
mvn package -B -T 1C
if [ $? != 0 ] ; then
exit 11
fi
Expand Down

0 comments on commit ab653b1

Please sign in to comment.