Skip to content

Commit

Permalink
1.2.0-spigot
Browse files Browse the repository at this point in the history
1. Added support for 1.19.4
  • Loading branch information
DVDishka committed Mar 21, 2023
1 parent 438b84f commit 30749e0
Showing 1 changed file with 9 additions and 48 deletions.
57 changes: 9 additions & 48 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dvdishka</groupId>
<artifactId>liteShops</artifactId>
<version>1.2.0-beta-1-spigot</version>
<version>1.2.0-spigot</version>
<packaging>jar</packaging>

<name>Shops</name>
Expand All @@ -20,31 +20,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -54,9 +29,11 @@
<path>
<groupId>dev.jorel</groupId>
<artifactId>commandapi-annotations</artifactId>
<version>8.7.5</version>
<version>8.8.0</version>
</path>
</annotationProcessorPaths>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -73,35 +50,19 @@
</execution>
</executions>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>dev.jorel.commandapi</pattern>
<shadedPattern>ru.dvdishka.shops.shade.commandapi</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>ru.dvdishka.shops.shade.bstats</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
Expand Down Expand Up @@ -133,23 +94,23 @@
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
<version>4.11.0</version>
<version>4.13.0</version>
</dependency>
<dependency>
<groupId>dev.jorel</groupId>
<artifactId>commandapi-annotations</artifactId>
<version>8.7.5</version>
<version>8.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>dev.jorel</groupId>
<artifactId>commandapi-shade</artifactId>
<version>8.7.5</version>
<version>8.8.0</version>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 30749e0

Please sign in to comment.