File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -318,9 +318,9 @@ cp external-dependencies/jclara-4.3-SNAPSHOT.jar $prefix_dir/lib/utils
318318# build (and test)
319319unset CLAS12DIR
320320if $runUnitTests ; then
321- $mvn install # also runs unit tests
321+ $mvn install -DskipTests=false
322322else
323- $mvn install -DskipTests
323+ $mvn install
324324fi
325325
326326# run spotbugs
Original file line number Diff line number Diff line change 2929 </repository >
3030 </repositories >
3131
32+ <profiles >
33+ <profile > <!-- skip unit tests by default -->
34+ <id >skip-tests</id >
35+ <activation >
36+ <activeByDefault >true</activeByDefault >
37+ </activation >
38+ <properties >
39+ <skipTests >true</skipTests >
40+ </properties >
41+ </profile >
42+ </profiles >
43+
3244 <!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
3345
3446 <dependencyManagement >
You can’t perform that action at this time.
0 commit comments