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>
|
2023-12-07 21:00:00 +01:00
|
|
|
<version>1.20.4-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>
|
2024-02-10 23:54:21 +01:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</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>
|
|
|
|
<!-- bundled with Minecraft, should be kept in sync -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2023-09-21 18:40:00 +02:00
|
|
|
<version>32.1.2-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>
|
2023-09-21 18:40:00 +02:00
|
|
|
<version>2.10.1</version>
|
2016-11-19 04:57:10 +01:00
|
|
|
<scope>compile</scope>
|
2015-02-26 18:55:30 +01:00
|
|
|
</dependency>
|
2023-03-14 17:30:00 +01:00
|
|
|
<!-- bundled with Minecraft, should be kept in sync -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.joml</groupId>
|
|
|
|
<artifactId>joml</artifactId>
|
|
|
|
<version>1.10.5</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-01-05 04:24:14 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2023-09-21 18:40:00 +02:00
|
|
|
<version>2.2</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>
|
2023-12-10 00:57:22 +01:00
|
|
|
<version>3.9.6</version>
|
2021-05-15 01:04:53 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
2023-12-10 00:57:22 +01:00
|
|
|
<version>1.9.18</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>
|
2023-12-10 00:57:22 +01:00
|
|
|
<version>1.9.18</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>
|
2023-06-07 17:30:00 +02:00
|
|
|
<version>24.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>
|
2023-09-23 22:09:10 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>5.10.0</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
2023-09-23 22:09:10 +02:00
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<version>2.2</version>
|
2015-01-05 04:24:14 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-09-11 10:20:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2024-03-29 11:23:32 +01:00
|
|
|
<version>5.11.0</version>
|
2023-09-11 10:20:41 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-13 07:42:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-tree</artifactId>
|
2024-03-29 11:23:32 +01:00
|
|
|
<version>9.7</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>
|
2023-07-15 02:41:18 +02:00
|
|
|
<version>0.5.0</version>
|
2020-04-22 03:50:21 +02:00
|
|
|
<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>
|
2023-04-02 07:01:50 +02:00
|
|
|
<version>3.11.0</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>
|
2023-04-02 07:01:50 +02:00
|
|
|
<!-- default changed with version 3.11.0 -->
|
|
|
|
<showWarnings>false</showWarnings>
|
2015-01-05 04:24:14 +01:00
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-eclipse</artifactId>
|
2023-04-02 07:01:50 +02:00
|
|
|
<version>2.13.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>
|
2023-04-02 06:58:05 +02:00
|
|
|
<version>3.3.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>
|
2023-07-15 02:41:18 +02:00
|
|
|
<version>3.5.0</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>
|
2023-02-22 21:46:54 +01:00
|
|
|
<!-- In 3.3.0 and later, shadedArtifactAttached causes dependant projects to use dependency reduced pom (bug?) -->
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2015-01-05 04:24:14 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-07-04 01:52:19 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2023-04-02 06:58:05 +02:00
|
|
|
<version>3.5.0</version>
|
2020-07-04 01:52:19 +02:00
|
|
|
<configuration>
|
|
|
|
<links>
|
2023-04-02 06:58:05 +02:00
|
|
|
<link>https://guava.dev/releases/31.1-jre/api/docs/</link>
|
2020-07-04 01:52:19 +02:00
|
|
|
</links>
|
2023-04-07 01:41:58 +02:00
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>apiNote</name>
|
|
|
|
<placement>a</placement>
|
|
|
|
<head>API Note:</head>
|
|
|
|
</tag>
|
|
|
|
</tags>
|
2020-07-04 01:52:19 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-09-23 22:23:39 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</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>
|
2023-06-07 17:30:00 +02:00
|
|
|
<version>3.3.0</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-22 05:27:06 +01:00
|
|
|
<version>8.45.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>
|
2023-04-02 06:58:05 +02:00
|
|
|
<version>1.23</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>
|