Package change & CI branch stuff

This commit is contained in:
Norbi Peti 2019-01-14 23:45:14 +01:00
parent 6d21e25bd6
commit a8d6c7ba78
No known key found for this signature in database
GPG key ID: DBA4C4549A927E56
2 changed files with 20 additions and 2 deletions

20
pom.xml
View file

@ -63,6 +63,9 @@
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<branch>
master
</branch>
</properties>
<repositories>
@ -118,7 +121,7 @@
<dependency>
<groupId>com.github.TBMCPlugins.ButtonCore</groupId>
<artifactId>ButtonCore</artifactId>
<version>master-SNAPSHOT</version>
<version>${branch}-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.shredzone.acme4j/acme4j-client -->
@ -139,4 +142,19 @@
<version>1.60</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>ci</id>
<activation>
<property>
<name>env.TRAVIS_BRANCH</name>
</property>
</activation>
<properties>
<!-- Override only if necessary -->
<branch>${env.TRAVIS_BRANCH}</branch>
</properties>
</profile>
</profiles>
</project>

View file

@ -1,6 +1,6 @@
package buttondevteam.website.page;
import buttondevteam.lib.PluginUpdater;
import buttondevteam.component.updater.PluginUpdater;
import buttondevteam.lib.TBMCCoreAPI;
import buttondevteam.website.io.IOHelper;
import buttondevteam.website.io.Response;