Remove distribution management

This commit is contained in:
Adam
2018-05-17 19:54:50 -04:00
parent 75674cfd55
commit 37ec6d0ac9
2 changed files with 1 additions and 24 deletions

14
pom.xml
View File

@@ -80,13 +80,6 @@
<url>https://travis-ci.org/runelite/runelite</url>
</ciManagement>
<distributionManagement>
<repository>
<id>runelite</id>
<url>dav:http://repo.runelite.net</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>maven-central</id>
@@ -226,12 +219,5 @@
</plugin>
</plugins>
</pluginManagement>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.12</version>
</extension>
</extensions>
</build>
</project>

View File

@@ -1,12 +1,3 @@
#!/bin/bash
PROJECT_VERSION=`mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec`
# Don't deploy pull requests (there are no secrets, anyway)
# And don't deploy releases, they are already deployed by the updater before this,
# and are signed.
if [[ "${TRAVIS_PULL_REQUEST}" == "false" && $PROJECT_VERSION == *"-SNAPSHOT" && "$TRAVIS_BRANCH" == "master" ]]; then
mvn clean deploy --settings travis/settings.xml
else
mvn clean install --settings travis/settings.xml
fi
mvn clean install --settings travis/settings.xml