We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a54185 commit 4cc873aCopy full SHA for 4cc873a
.travis.yml
@@ -15,6 +15,7 @@ env:
15
matrix:
16
- TEST_SET="-Ptravis_e2e_skip"
17
- TEST_SET="-Ptravis_e2e"
18
+ - TEST_SET="glassfish-copyright:copyright"
19
20
install: true
21
travis.sh
@@ -25,7 +25,11 @@ trap 'error_handler' ERR
25
bash -c "while true; do tail -5 $BUILD_OUTPUT; sleep $PING_SLEEP; done" &
26
PING_LOOP_PID=$!
27
28
-mvn -e -U -B clean install $1 >> $BUILD_OUTPUT 2>&1
+if [ "$1" = "glassfish-copyright:copyright" ]; then
29
+ mvn glassfish-copyright:copyright
30
+else
31
+ mvn -e -U -B clean install $1 >> $BUILD_OUTPUT 2>&1
32
+fi
33
34
# The build finished without returning an error so dump a tail of the output
35
dump_output
0 commit comments