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 f3b1e8c commit 226d163Copy full SHA for 226d163
1 file changed
.travis.yml
@@ -8,7 +8,12 @@ install:
8
- mvn --settings .maven.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
9
10
script:
11
- mvn clean deploy --settings .maven.xml -B -U -Prelease
+ - |
12
+ if [[ -z "${TRAVIS_TAG}" ]]; then
13
+ mvn clean deploy --settings .maven.xml -B -U
14
+ else
15
+ mvn clean deploy --settings .maven.xml -B -U -Prelease
16
+ fi
17
18
before_deploy:
19
- mvn help:evaluate -N -Dexpression=project.version|grep -v '\['
0 commit comments