Use spigot API instead of Paper API again

This commit is contained in:
Guntram Blohm 2019-03-20 19:26:48 +01:00
parent 12bb4b1da9
commit 21adadd7e6
1 changed files with 58 additions and 53 deletions

111
pom.xml
View File

@ -17,23 +17,26 @@
<repositories> <repositories>
<repository> <repository>
<id>papermc</id> <id>spigot-repo</id>
<url>https://papermc.io/repo/repository/maven-public/</url> <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository> </repository>
<repository> <repository>
<id>dynmap-repo</id> <id>dynmap-repo</id>
<url>https://repo.mikeprimm.com/</url> <url>https://repo.mikeprimm.com/</url>
</repository> </repository>
</repositories> <repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
</repositories>
<dependencies> <dependencies>
<!--Spigot-API--> <!--Spigot-API-->
<dependency> <dependency>
<groupId>com.destroystokyo.paper</groupId> <groupId>org.spigotmc</groupId>
<artifactId>paper-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.13.2-R0.1-SNAPSHOT</version> <version>1.13.1-R0.1-SNAPSHOT</version>
<scope>provided</scope> </dependency>
</dependency>
<!--Bukkit API--> <!--Bukkit API-->
<dependency> <dependency>
<groupId>org.bukkit</groupId> <groupId>org.bukkit</groupId>
@ -46,12 +49,12 @@
<artifactId>dynmap-api</artifactId> <artifactId>dynmap-api</artifactId>
<version>2.5</version> <version>2.5</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.papermc</groupId> <groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId> <artifactId>paperlib</artifactId>
<version>1.0.2</version> <version>1.0.2</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
@ -67,43 +70,45 @@
<target>1.8</target> <target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version> <version>3.1.1</version>
<configuration> <configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<relocations> <relocations>
<relocation> <relocation>
<pattern>io.papermc.lib</pattern> <pattern>io.papermc.lib</pattern>
<shadedPattern>com.wimbli.WorldBorder.paperlib</shadedPattern> <!-- Replace this --> <shadedPattern>com.wimbli.WorldBorder.paperlib</shadedPattern> <!-- Replace this -->
</relocation> </relocation>
</relocations> </relocations>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>shade</goal> <goal>shade</goal>
</goals> </goals>
<configuration> <configuration>
<artifactSet> <artifactSet>
<excludes> <excludes>
<exclude>commons-lang:commons-lang</exclude> <exclude>org.spigotmc:spigot-api</exclude>
<exclude>com.googlecode.json-simple:json-simple</exclude> <exclude>commons-lang:commons-lang</exclude>
<exclude>junit:junit</exclude> <exclude>com.googlecode.json-simple:json-simple</exclude>
<exclude>org.hamcrest:hamcrest-core</exclude> <exclude>junit:junit</exclude>
<exclude>com.google.guava:guava</exclude> <exclude>org.hamcrest:hamcrest-core</exclude>
<exclude>com.google.code.gson:gson</exclude> <exclude>com.google.guava:guava</exclude>
<exclude>org.yaml:snakeyaml</exclude> <exclude>com.google.code.gson:gson</exclude>
<exclude>org.bukkit:bukkit</exclude> <exclude>org.yaml:snakeyaml</exclude>
<exclude>us.dynmap:dynmap-api</exclude> <exclude>net.md-5:bungeecord-chat</exclude>
</excludes> <exclude>org.bukkit:bukkit</exclude>
</artifactSet> <exclude>us.dynmap:dynmap-api</exclude>
</configuration> </excludes>
</execution> </artifactSet>
</executions> </configuration>
</plugin> </execution>
</plugins> </executions>
</plugin>
</plugins>
</build> </build>
</project> </project>