2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 1 Mar 2016 00:16:08 +0100
|
2021-06-14 03:48:31 +02:00
|
|
|
Subject: [PATCH] Build system changes
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
|
2021-06-11 20:06:01 +02:00
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
2022-12-07 17:46:46 +01:00
|
|
|
index 9686f621c7b837a7a38ffb2fea10ae492b18556d..2b3288057d67e5add4e22e6b7072527057bcd808 100644
|
2021-06-11 20:06:01 +02:00
|
|
|
--- a/build.gradle.kts
|
|
|
|
+++ b/build.gradle.kts
|
2022-06-07 18:52:56 +02:00
|
|
|
@@ -14,15 +14,27 @@ dependencies {
|
2022-12-07 17:46:46 +01:00
|
|
|
api("com.google.code.gson:gson:2.10")
|
2021-06-11 20:06:01 +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-11-27 07:54:18 +01:00
|
|
|
+ // Paper start
|
|
|
|
+ api("com.googlecode.json-simple:json-simple:1.1.1") {
|
|
|
|
+ isTransitive = false // includes junit
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-11 20:06:01 +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 20:06:01 +02:00
|
|
|
+ compileOnly("com.google.code.findbugs:jsr305:1.3.9") // Paper
|
|
|
|
|
2021-12-20 23:46:51 +01:00
|
|
|
- val annotations = "org.jetbrains:annotations-java5:23.0.0"
|
|
|
|
+ val annotations = "org.jetbrains:annotations:23.0.0" // Paper - we don't want Java 5 annotations...
|
2021-06-11 20:06:01 +02:00
|
|
|
compileOnly(annotations)
|
2021-06-14 03:48:31 +02:00
|
|
|
testCompileOnly(annotations)
|
|
|
|
|
2021-09-23 23:07:44 +02:00
|
|
|
+ // Paper start - add checker
|
2021-12-21 10:17:52 +01:00
|
|
|
+ val checkerQual = "org.checkerframework:checker-qual:3.21.0"
|
|
|
|
+ compileOnlyApi(checkerQual)
|
|
|
|
+ testCompileOnly(checkerQual)
|
2021-09-23 23:07:44 +02:00
|
|
|
+ // Paper end
|
|
|
|
+
|
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-09-23 23:07:44 +02:00
|
|
|
testImplementation("org.hamcrest:hamcrest-library:1.3")
|
2022-07-20 18:16:13 +02:00
|
|
|
@@ -64,7 +76,7 @@ tasks.withType<Javadoc> {
|
2022-03-01 05:38:49 +01:00
|
|
|
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/",
|
|
|
|
+ "https://javadoc.io/doc/org.jetbrains/annotations/23.0.0/", // Paper - we don't want Java 5 annotations
|
2021-07-06 05:25:23 +02:00
|
|
|
"https://javadoc.io/doc/net.md-5/bungeecord-chat/1.16-R0.4/",
|
|
|
|
)
|
2022-03-01 05:38:49 +01:00
|
|
|
|
2022-07-20 18:16:13 +02:00
|
|
|
@@ -79,3 +91,14 @@ tasks.withType<Javadoc> {
|
2022-06-28 00:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+// Paper start
|
|
|
|
+val scanJar = tasks.register("scanJarForBadCalls", io.papermc.paperweight.tasks.ScanJarForBadCalls::class) {
|
|
|
|
+ badAnnotations.add("Lio/papermc/paper/annotation/DoNotUse;")
|
|
|
|
+ jarToScan.set(tasks.jar.flatMap { it.archiveFile })
|
|
|
|
+ classpath.from(configurations.compileClasspath)
|
|
|
|
+}
|
|
|
|
+tasks.check {
|
|
|
|
+ dependsOn(scanJar)
|
|
|
|
+}
|
|
|
|
+// Paper end
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/annotation/DoNotUse.java b/src/main/java/io/papermc/paper/annotation/DoNotUse.java
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000000000000000000000000000000000000..4766e49d819e75e5c2127c698b44078bf2fd6219
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/annotation/DoNotUse.java
|
|
|
|
@@ -0,0 +1,18 @@
|
|
|
|
+package io.papermc.paper.annotation;
|
|
|
|
+
|
|
|
|
+import java.lang.annotation.ElementType;
|
|
|
|
+import java.lang.annotation.Retention;
|
|
|
|
+import java.lang.annotation.RetentionPolicy;
|
|
|
|
+import java.lang.annotation.Target;
|
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Annotation used to mark methods or constructors which should not be called.
|
|
|
|
+ *
|
|
|
|
+ * <p>Separate from {@link Deprecated} to differentiate from the large amount of deprecations.</p>
|
|
|
|
+ */
|
|
|
|
+@ApiStatus.Internal
|
|
|
|
+@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
+@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
|
|
|
|
+public @interface DoNotUse {
|
|
|
|
+}
|