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 226d163 commit 5ae8854Copy full SHA for 5ae8854
2 files changed
.travis.yml
@@ -10,9 +10,9 @@ install:
10
script:
11
- |
12
if [[ -z "${TRAVIS_TAG}" ]]; then
13
- mvn clean deploy --settings .maven.xml -B -U
+ mvn clean deploy -B -U -P debug
14
else
15
- mvn clean deploy --settings .maven.xml -B -U -Prelease
+ mvn clean deploy --settings .maven.xml -B -U -P release
16
fi
17
18
before_deploy:
pom.xml
@@ -83,6 +83,15 @@
83
</distributionManagement>
84
85
<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>
95
<profile>
96
<id>release</id>
97
<activation>
0 commit comments