version bump (1.4.6)

This commit is contained in:
ajgeiss0702
2020-06-29 09:30:03 -07:00
parent f143e42a93
commit ea765a5619
2 changed files with 49 additions and 2 deletions
+21 -1
View File
@@ -4,7 +4,7 @@
<groupId>us.ajg0702</groupId>
<artifactId>ajQueue</artifactId>
<name>ajQueue</name>
<version>1.4.5</version>
<version>1.4.6</version>
<build>
<resources>
<resource>
@@ -41,6 +41,26 @@
</relocations>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>us.ajg0702.utils</pattern>
<shadedPattern>us.ajg0702.queue.utils</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
+28 -1
View File
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>us.ajg0702</groupId>
<artifactId>ajQueue</artifactId>
<version>1.4.5</version>
<version>1.4.6</version>
<name>ajQueue</name>
<repositories>
@@ -56,6 +56,12 @@
<version>2.10.4</version>
<scope>provided</scope>
</dependency>
<!-- <dependency>
<groupId>us.ajg0702</groupId>
<artifactId>ajUtils</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>-->
<!-- <dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bungeecord</artifactId>
@@ -104,6 +110,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<relocations>
<relocation>
<pattern>us.ajg0702.utils</pattern>
<shadedPattern>us.ajg0702.queue.utils</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>