version bump (1.1.3)

This commit is contained in:
ajgeiss0702
2020-05-10 13:47:43 -07:00
parent 8d0d3a547f
commit edc1e0ce10
4 changed files with 63 additions and 9 deletions
+33 -3
View File
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>us.ajg0702</groupId>
<artifactId>ajQueue</artifactId>
<version>1.1.1</version>
<version>1.1.3</version>
<name>ajQueue</name>
<repositories>
@@ -32,11 +32,16 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>us.ajg0702.premium</groupId>
<artifactId>ajQueuePlus</artifactId>
<version>1.0.0</version>
</dependency>
<!-- <dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bungeecord</artifactId>
<version>1.7</version>
<scope>compile</scope>
</dependency>
</dependency>-->
</dependencies>
<build>
@@ -66,7 +71,7 @@
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<pattern>us.ajg0702.premium</pattern>
<!-- Replace this with your package! -->
<shadedPattern>us.ajg0702.queue</shadedPattern>
</relocation>
@@ -81,6 +86,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>rename.sh</executable>
<workingDirectory>target</workingDirectory>
<arguments>
<argument>${project.version}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>