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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>1.18-pre5-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>
|
|
|
|
|
|
|
|
<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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>31.0.1-jre</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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>2.8.8</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>
|
2021-06-11 12:50:27 +02:00
|
|
|
<version>1.28</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-05-15 01:04:53 +02:00
|
|
|
<!-- not part of the API proper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>1.7.0</version>
|
2021-05-15 01:04:53 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>1.7.0</version>
|
2021-05-15 01:04:53 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-03-13 07:42:57 +01:00
|
|
|
<!-- annotations -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
2020-07-06 03:05:43 +02:00
|
|
|
<artifactId>annotations-java5</artifactId>
|
2021-06-11 07:00:00 +02:00
|
|
|
<version>21.0.1</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-10-17 08:51:05 +02:00
|
|
|
<version>4.13.1</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>
|
2021-08-13 00:45:11 +02:00
|
|
|
<version>9.2</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-eclipse</artifactId>
|
2021-03-14 02:16:27 +01:00
|
|
|
<version>2.8.8</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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>3.27.0</version>
|
2020-06-28 01:39:09 +02:00
|
|
|
</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>
|
2021-07-03 03:06:15 +02:00
|
|
|
<version>3.2.4</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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>3.3.1</version>
|
2020-07-04 01:52:19 +02:00
|
|
|
<configuration>
|
|
|
|
<links>
|
2021-11-21 23:00:00 +01:00
|
|
|
<link>https://guava.dev/releases/31.0.1-jre/api/docs/</link>
|
2021-07-03 03:06:15 +02:00
|
|
|
<link>https://javadoc.io/doc/org.yaml/snakeyaml/1.28/</link>
|
|
|
|
<link>https://javadoc.io/doc/org.jetbrains/annotations-java5/21.0.1/</link>
|
2020-07-04 01:52:19 +02:00
|
|
|
</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>
|
2021-07-03 03:06:15 +02:00
|
|
|
<version>3.1.2</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>
|
2021-11-21 23:00:00 +01:00
|
|
|
<version>9.1</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>
|
2021-07-03 03:06:15 +02:00
|
|
|
<version>1.20</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>
|