2015-01-05 04:24:14 +01:00
|
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2020-06-25 02:00:00 +02:00
|
|
|
<version>1.16.1-R0.1-SNAPSHOT</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Bukkit</name>
|
2017-08-05 08:20:53 +02:00
|
|
|
<url>https://www.spigotmc.org/</url>
|
2015-01-05 04:24:14 +01:00
|
|
|
<description>A plugin API for Minecraft servers.</description>
|
|
|
|
|
|
|
|
<properties>
|
2019-01-04 10:25:23 +01:00
|
|
|
<skipTests>true</skipTests>
|
2019-05-06 00:40:10 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2015-01-05 04:24:14 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>spigotmc-releases</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2015-05-28 10:53:56 +02:00
|
|
|
<id>spigotmc-snapshots</id>
|
2015-01-05 04:24:14 +01:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2017-08-03 15:00:00 +02:00
|
|
|
<repositories>
|
2019-01-29 00:01:15 +01:00
|
|
|
<!--
|
|
|
|
If you are a plugin developer, please use https://hub.spigotmc.org/nexus/content/repositories/snapshots/
|
|
|
|
as your repository URL. This will ensure only Bukkit / Spigot-API are pulled from our Maven repository.
|
|
|
|
|
|
|
|
Please see https://www.spigotmc.org/go/maven for more information.
|
|
|
|
-->
|
2017-08-03 15:00:00 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigotmc-public</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2015-01-05 04:24:14 +01:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spigotmc-public</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- bundled with Minecraft, should be kept in sync -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2017-05-14 04:00:00 +02:00
|
|
|
<version>21.0</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-05-28 10:53:56 +02:00
|
|
|
<!-- bundled with Minecraft, should be kept in sync -->
|
2015-02-26 18:55:30 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2017-05-14 04:00:00 +02:00
|
|
|
<version>2.8.0</version>
|
2016-11-19 04:57:10 +01:00
|
|
|
<scope>compile</scope>
|
2015-02-26 18:55:30 +01:00
|
|
|
</dependency>
|
2015-01-05 04:24:14 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2020-06-25 02:00:00 +02:00
|
|
|
<version>1.26</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-03-13 07:42:57 +01:00
|
|
|
<!-- annotations -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
2020-01-21 22:00:00 +01:00
|
|
|
<artifactId>annotations</artifactId>
|
2020-06-25 02:00:00 +02:00
|
|
|
<version>19.0.0</version>
|
2019-03-13 07:42:57 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-01-05 04:24:14 +01:00
|
|
|
<!-- testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-01-21 22:00:00 +01:00
|
|
|
<version>4.13</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-13 07:42:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-tree</artifactId>
|
2020-06-25 02:00:00 +02:00
|
|
|
<version>8.0.1</version>
|
2019-03-13 07:42:57 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-01-05 04:24:14 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-04-22 03:50:21 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>scriptus</artifactId>
|
|
|
|
<version>0.4.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>describe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-01-05 04:24:14 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-12-10 23:00:00 +01:00
|
|
|
<version>3.8.1</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<configuration>
|
|
|
|
<!-- we use the Eclipse compiler as it doesn't need a JDK -->
|
|
|
|
<compilerId>eclipse</compilerId>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<!-- we need our custom version as it fixes some bugs on case sensitive file systems -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-eclipse</artifactId>
|
2019-01-23 02:41:26 +01:00
|
|
|
<version>2.8.5-spigotmc</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
</dependency>
|
2020-06-28 01:39:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
|
|
<artifactId>ecj</artifactId>
|
|
|
|
<version>3.22.0</version>
|
|
|
|
</dependency>
|
2015-01-05 04:24:14 +01:00
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2018-08-15 08:09:36 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2020-04-22 03:50:21 +02:00
|
|
|
<version>3.2.0</version>
|
2018-08-15 08:09:36 +02:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
2020-04-22 03:50:21 +02:00
|
|
|
<manifest>
|
|
|
|
<addDefaultEntries>false</addDefaultEntries>
|
|
|
|
</manifest>
|
2018-08-15 08:09:36 +02:00
|
|
|
<manifestEntries>
|
|
|
|
<Automatic-Module-Name>org.bukkit</Automatic-Module-Name>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-01-05 04:24:14 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-04-22 03:50:21 +02:00
|
|
|
<version>3.2.3</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2020-04-22 03:50:21 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2015-01-05 04:24:14 +01:00
|
|
|
<!-- when downloading via Maven we can pull depends individually -->
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-07-04 01:52:19 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<links>
|
|
|
|
<link>https://guava.dev/releases/21.0/api/docs/</link>
|
|
|
|
<link>https://javadoc.io/doc/org.yaml/snakeyaml/1.26/</link>
|
|
|
|
<link>https://javadoc.io/doc/org.jetbrains/annotations/19.0.0/</link>
|
|
|
|
</links>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-01-05 04:24:14 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-11-16 23:49:18 +01:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>development</id>
|
2019-01-04 10:25:23 +01:00
|
|
|
<properties>
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
</properties>
|
2017-11-16 23:49:18 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-04-23 06:00:20 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2020-04-22 03:50:21 +02:00
|
|
|
<version>3.1.1</version>
|
2019-04-23 06:00:20 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-04-23 13:01:36 +02:00
|
|
|
<phase>process-classes</phase>
|
2019-04-23 06:00:20 +02:00
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2020-04-22 03:50:21 +02:00
|
|
|
<version>8.31</version>
|
2019-04-23 06:00:20 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2017-11-16 23:49:18 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
2019-12-10 23:00:00 +01:00
|
|
|
<version>1.18</version>
|
2017-11-16 23:49:18 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
2019-05-06 00:40:10 +02:00
|
|
|
<artifactId>java18</artifactId>
|
2018-07-07 01:21:27 +02:00
|
|
|
<version>1.0</version>
|
2017-11-16 23:49:18 +01:00
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-01-05 04:24:14 +01:00
|
|
|
</project>
|