Skip to content

Commit 5ae8854

Browse files
committed
Trying to get that working
1 parent 226d163 commit 5ae8854

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ install:
1010
script:
1111
- |
1212
if [[ -z "${TRAVIS_TAG}" ]]; then
13-
mvn clean deploy --settings .maven.xml -B -U
13+
mvn clean deploy -B -U -P debug
1414
else
15-
mvn clean deploy --settings .maven.xml -B -U -Prelease
15+
mvn clean deploy --settings .maven.xml -B -U -P release
1616
fi
1717
1818
before_deploy:

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@
8383
</distributionManagement>
8484

8585
<profiles>
86+
<profile>
87+
<id>debug</id>
88+
<activation>
89+
<activeByDefault>true</activeByDefault>
90+
<property>
91+
<name>debug</name>
92+
</property>
93+
</activation>
94+
</profile>
8695
<profile>
8796
<id>release</id>
8897
<activation>

0 commit comments

Comments
 (0)