2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2021-07-20 04:07:53 +02:00
|
|
|
From: Kyle Wood <kyle@denwav.dev>
|
2021-06-11 14:02:28 +02:00
|
|
|
Date: Thu, 10 Dec 2020 20:50:33 -0800
|
|
|
|
Subject: [PATCH] Convert project to Gradle
|
|
|
|
|
2021-06-17 19:11:00 +02:00
|
|
|
The pom.xml file is deleted in this patch so the patch will fail to
|
|
|
|
apply if there are changes made to it from upstream - thus notifying us
|
|
|
|
that changes were made.
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
2022-09-24 03:38:12 +02:00
|
|
|
index 11038da2e071699d6561a331565db0c8d7850d0e..317acfec5894101294a55abff61819431e6a5e65 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/.gitignore
|
|
|
|
+++ b/.gitignore
|
|
|
|
@@ -1,3 +1,5 @@
|
|
|
|
+.gradle/
|
|
|
|
+
|
|
|
|
# Eclipse stuff
|
|
|
|
/.classpath
|
|
|
|
/.project
|
2022-09-24 03:38:12 +02:00
|
|
|
@@ -31,3 +33,7 @@
|
2021-08-07 02:27:45 +02:00
|
|
|
*.ipr
|
|
|
|
*.iws
|
|
|
|
.idea/
|
|
|
|
+
|
|
|
|
+# vs code
|
|
|
|
+/.vscode
|
|
|
|
+/.factorypath
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
|
|
new file mode 100644
|
2022-12-07 17:46:46 +01:00
|
|
|
index 0000000000000000000000000000000000000000..9686f621c7b837a7a38ffb2fea10ae492b18556d
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/build.gradle.kts
|
2022-07-20 18:16:13 +02:00
|
|
|
@@ -0,0 +1,81 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+plugins {
|
|
|
|
+ `java-library`
|
2021-06-15 03:50:13 +02:00
|
|
|
+ `maven-publish`
|
2021-06-11 14:02:28 +02:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+java {
|
|
|
|
+ withSourcesJar()
|
|
|
|
+ withJavadocJar()
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+dependencies {
|
|
|
|
+ // api dependencies are listed transitively to API consumers
|
2022-12-07 17:46:46 +01:00
|
|
|
+ api("com.google.guava:guava:31.1-jre")
|
|
|
|
+ api("com.google.code.gson:gson:2.10")
|
2021-06-11 14:02:28 +02:00
|
|
|
+ api("net.md-5:bungeecord-chat:1.16-R0.4")
|
2022-10-02 09:56:36 +02:00
|
|
|
+ api("org.yaml:snakeyaml:1.33")
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2022-06-08 09:49:02 +02:00
|
|
|
+ compileOnly("org.apache.maven:maven-resolver-provider:3.8.5")
|
|
|
|
+ compileOnly("org.apache.maven.resolver:maven-resolver-connector-basic:1.7.3")
|
|
|
|
+ compileOnly("org.apache.maven.resolver:maven-resolver-transport-http:1.7.3")
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2021-12-20 23:46:51 +01:00
|
|
|
+ val annotations = "org.jetbrains:annotations-java5:23.0.0"
|
2021-06-11 14:02:28 +02:00
|
|
|
+ compileOnly(annotations)
|
|
|
|
+ testCompileOnly(annotations)
|
|
|
|
+
|
2022-06-08 17:31:27 +02:00
|
|
|
+ testImplementation("org.apache.commons:commons-lang3:3.12.0")
|
2021-12-20 23:46:51 +01:00
|
|
|
+ testImplementation("junit:junit:4.13.2")
|
2021-06-11 14:02:28 +02:00
|
|
|
+ testImplementation("org.hamcrest:hamcrest-library:1.3")
|
2022-06-07 18:52:56 +02:00
|
|
|
+ testImplementation("org.ow2.asm:asm-tree:9.3")
|
2021-06-11 14:02:28 +02:00
|
|
|
+}
|
|
|
|
+
|
2021-06-15 03:50:13 +02:00
|
|
|
+configure<PublishingExtension> {
|
|
|
|
+ publications.create<MavenPublication>("maven") {
|
|
|
|
+ from(components["java"])
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2021-06-13 03:28:41 +02:00
|
|
|
+val generateApiVersioningFile by tasks.registering {
|
2021-10-27 04:45:45 +02:00
|
|
|
+ inputs.property("version", project.version)
|
2021-06-13 03:28:41 +02:00
|
|
|
+ val pomProps = layout.buildDirectory.file("pom.properties")
|
|
|
|
+ outputs.file(pomProps)
|
2021-11-28 04:06:16 +01:00
|
|
|
+ val projectVersion = project.version
|
2021-06-13 03:28:41 +02:00
|
|
|
+ doLast {
|
2021-11-28 04:06:16 +01:00
|
|
|
+ pomProps.get().asFile.writeText("version=$projectVersion")
|
2021-06-13 03:28:41 +02:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+tasks.jar {
|
2021-06-13 03:28:41 +02:00
|
|
|
+ from(generateApiVersioningFile.map { it.outputs.files.singleFile }) {
|
2021-11-26 07:08:46 +01:00
|
|
|
+ into("META-INF/maven/${project.group}/${project.name}")
|
2021-06-13 03:28:41 +02:00
|
|
|
+ }
|
2021-06-11 14:02:28 +02:00
|
|
|
+ manifest {
|
2021-10-27 04:45:45 +02:00
|
|
|
+ attributes(
|
2021-06-11 14:02:28 +02:00
|
|
|
+ "Automatic-Module-Name" to "org.bukkit"
|
|
|
|
+ )
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2021-10-27 04:45:45 +02:00
|
|
|
+tasks.withType<Javadoc> {
|
2022-03-01 05:38:49 +01:00
|
|
|
+ val options = options as StandardJavadocDocletOptions
|
|
|
|
+ options.overview = "src/main/javadoc/overview.html"
|
2022-07-20 18:16:13 +02:00
|
|
|
+ options.use()
|
2022-03-01 05:38:49 +01:00
|
|
|
+ options.isDocFilesSubDirs = true
|
|
|
|
+ options.links(
|
2021-11-22 06:21:37 +01:00
|
|
|
+ "https://guava.dev/releases/31.0.1-jre/api/docs/",
|
2022-10-02 09:56:36 +02:00
|
|
|
+ "https://javadoc.io/doc/org.yaml/snakeyaml/1.33/",
|
2021-12-20 23:46:51 +01:00
|
|
|
+ "https://javadoc.io/doc/org.jetbrains/annotations-java5/23.0.0/",
|
2021-07-06 05:25:23 +02:00
|
|
|
+ "https://javadoc.io/doc/net.md-5/bungeecord-chat/1.16-R0.4/",
|
2021-06-11 14:02:28 +02:00
|
|
|
+ )
|
2022-03-01 05:38:49 +01:00
|
|
|
+
|
|
|
|
+ // workaround for https://github.com/gradle/gradle/issues/4046
|
|
|
|
+ inputs.dir("src/main/javadoc").withPropertyName("javadoc-sourceset")
|
|
|
|
+ doLast {
|
|
|
|
+ copy {
|
|
|
|
+ from("src/main/javadoc") {
|
|
|
|
+ include("**/doc-files/**")
|
|
|
|
+ }
|
|
|
|
+ into("build/docs/javadoc")
|
|
|
|
+ }
|
|
|
|
+ }
|
2021-06-11 14:02:28 +02:00
|
|
|
+}
|
2021-06-17 19:11:00 +02:00
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
|
|
deleted file mode 100644
|
2022-12-07 17:46:46 +01:00
|
|
|
index 389f3761876d2a667309d317d1a99b545f36771a..0000000000000000000000000000000000000000
|
2021-06-17 19:11:00 +02:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ /dev/null
|
2022-06-07 18:52:56 +02:00
|
|
|
@@ -1,252 +0,0 @@
|
2021-06-17 19:11:00 +02: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.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot-api</artifactId>
|
2022-12-07 17:46:46 +01:00
|
|
|
- <version>1.19.3-R0.1-SNAPSHOT</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <packaging>jar</packaging>
|
|
|
|
-
|
|
|
|
- <name>Spigot-API</name>
|
|
|
|
- <url>https://www.spigotmc.org/</url>
|
|
|
|
- <description>An enhanced plugin API for Minecraft servers.</description>
|
|
|
|
-
|
|
|
|
- <properties>
|
|
|
|
- <skipTests>true</skipTests>
|
|
|
|
- <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
- <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
- <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>
|
|
|
|
- <id>spigotmc-snapshots</id>
|
|
|
|
- <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>
|
2022-12-07 17:46:46 +01:00
|
|
|
- <version>31.1-jre</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- bundled with Minecraft, should be kept in sync -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.google.code.gson</groupId>
|
|
|
|
- <artifactId>gson</artifactId>
|
2022-12-07 17:46:46 +01:00
|
|
|
- <version>2.10</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.md-5</groupId>
|
|
|
|
- <artifactId>bungeecord-chat</artifactId>
|
|
|
|
- <version>1.16-R0.4</version>
|
|
|
|
- <type>jar</type>
|
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.yaml</groupId>
|
|
|
|
- <artifactId>snakeyaml</artifactId>
|
2022-10-02 09:56:36 +02:00
|
|
|
- <version>1.33</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- not part of the API proper -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.maven</groupId>
|
|
|
|
- <artifactId>maven-resolver-provider</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>3.8.5</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.maven.resolver</groupId>
|
|
|
|
- <artifactId>maven-resolver-connector-basic</artifactId>
|
2022-06-08 09:49:02 +02:00
|
|
|
- <version>1.7.3</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.maven.resolver</groupId>
|
|
|
|
- <artifactId>maven-resolver-transport-http</artifactId>
|
2022-06-08 09:49:02 +02:00
|
|
|
- <version>1.7.3</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- annotations -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.jetbrains</groupId>
|
|
|
|
- <artifactId>annotations-java5</artifactId>
|
2021-12-20 23:46:51 +01:00
|
|
|
- <version>23.0.0</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- testing -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>junit</groupId>
|
|
|
|
- <artifactId>junit</artifactId>
|
2021-12-20 23:46:51 +01:00
|
|
|
- <version>4.13.2</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.hamcrest</groupId>
|
|
|
|
- <artifactId>hamcrest-library</artifactId>
|
|
|
|
- <version>1.3</version>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.ow2.asm</groupId>
|
|
|
|
- <artifactId>asm-tree</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>9.3</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
-
|
|
|
|
- <build>
|
|
|
|
- <plugins>
|
|
|
|
- <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>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>3.10.1</version>
|
2021-06-17 19:11:00 +02: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>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>2.12.0</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-jar-plugin</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>3.2.2</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <configuration>
|
|
|
|
- <archive>
|
|
|
|
- <manifest>
|
|
|
|
- <addDefaultEntries>false</addDefaultEntries>
|
|
|
|
- </manifest>
|
|
|
|
- <manifestEntries>
|
|
|
|
- <Automatic-Module-Name>org.bukkit</Automatic-Module-Name>
|
|
|
|
- </manifestEntries>
|
|
|
|
- </archive>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-shade-plugin</artifactId>
|
2021-07-07 08:52:40 +02:00
|
|
|
- <version>3.2.4</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <executions>
|
|
|
|
- <execution>
|
|
|
|
- <phase>package</phase>
|
|
|
|
- <goals>
|
|
|
|
- <goal>shade</goal>
|
|
|
|
- </goals>
|
|
|
|
- </execution>
|
|
|
|
- </executions>
|
|
|
|
- <configuration>
|
|
|
|
- <filters>
|
|
|
|
- <filter>
|
|
|
|
- <artifact>*:*</artifact>
|
|
|
|
- <excludes>
|
|
|
|
- <exclude>META-INF/MANIFEST.MF</exclude>
|
|
|
|
- </excludes>
|
|
|
|
- </filter>
|
|
|
|
- </filters>
|
|
|
|
- <!-- when downloading via Maven we can pull depends individually -->
|
|
|
|
- <shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-javadoc-plugin</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>3.4.0</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <configuration>
|
|
|
|
- <links>
|
2021-11-22 06:21:37 +01:00
|
|
|
- <link>https://guava.dev/releases/31.0.1-jre/api/docs/</link>
|
2021-12-20 23:46:51 +01:00
|
|
|
- <link>https://javadoc.io/doc/org.yaml/snakeyaml/1.30/</link>
|
|
|
|
- <link>https://javadoc.io/doc/org.jetbrains/annotations-java5/23.0.0/</link>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <link>https://javadoc.io/doc/net.md-5/bungeecord-chat/1.16-R0.4/</link>
|
|
|
|
- </links>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
-
|
|
|
|
- <profiles>
|
|
|
|
- <profile>
|
|
|
|
- <id>development</id>
|
|
|
|
- <properties>
|
|
|
|
- <skipTests>false</skipTests>
|
|
|
|
- </properties>
|
|
|
|
- <build>
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-checkstyle-plugin</artifactId>
|
2021-07-07 08:52:40 +02:00
|
|
|
- <version>3.1.2</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <executions>
|
|
|
|
- <execution>
|
|
|
|
- <phase>process-classes</phase>
|
|
|
|
- <goals>
|
|
|
|
- <goal>check</goal>
|
|
|
|
- </goals>
|
|
|
|
- </execution>
|
|
|
|
- </executions>
|
|
|
|
- <configuration>
|
|
|
|
- <configLocation>checkstyle.xml</configLocation>
|
2022-02-19 13:50:20 +01:00
|
|
|
- <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
- </configuration>
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.puppycrawl.tools</groupId>
|
|
|
|
- <artifactId>checkstyle</artifactId>
|
2021-11-22 06:21:37 +01:00
|
|
|
- <version>8.45.1</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.codehaus.mojo</groupId>
|
|
|
|
- <artifactId>animal-sniffer-maven-plugin</artifactId>
|
2022-06-07 18:52:56 +02:00
|
|
|
- <version>1.21</version>
|
2021-06-17 19:11:00 +02:00
|
|
|
- <executions>
|
|
|
|
- <execution>
|
|
|
|
- <phase>process-classes</phase>
|
|
|
|
- <goals>
|
|
|
|
- <goal>check</goal>
|
|
|
|
- </goals>
|
|
|
|
- </execution>
|
|
|
|
- </executions>
|
|
|
|
- <configuration>
|
|
|
|
- <signature>
|
|
|
|
- <groupId>org.codehaus.mojo.signature</groupId>
|
|
|
|
- <artifactId>java18</artifactId>
|
|
|
|
- <version>1.0</version>
|
|
|
|
- </signature>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
- </profile>
|
|
|
|
- </profiles>
|
|
|
|
-</project>
|