48 lines
		
	
	
	
		
			2 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			2 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
 | 
						|
Date: Tue, 1 Mar 2016 00:16:08 +0100
 | 
						|
Subject: [PATCH] Build system changes
 | 
						|
 | 
						|
 | 
						|
diff --git a/build.gradle.kts b/build.gradle.kts
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/build.gradle.kts
 | 
						|
+++ b/build.gradle.kts
 | 
						|
@@ -0,0 +0,0 @@ dependencies {
 | 
						|
     api("com.google.code.gson:gson:2.8.9")
 | 
						|
     api("net.md-5:bungeecord-chat:1.16-R0.4")
 | 
						|
     api("org.yaml:snakeyaml:1.30")
 | 
						|
+    // Paper start
 | 
						|
+    api("com.googlecode.json-simple:json-simple:1.1.1") {
 | 
						|
+        isTransitive = false // includes junit
 | 
						|
+    }
 | 
						|
+    // Paper end
 | 
						|
 
 | 
						|
     compileOnly("org.apache.maven:maven-resolver-provider:3.8.4")
 | 
						|
     compileOnly("org.apache.maven.resolver:maven-resolver-connector-basic:1.7.2")
 | 
						|
     compileOnly("org.apache.maven.resolver:maven-resolver-transport-http:1.7.2")
 | 
						|
+    compileOnly("com.google.code.findbugs:jsr305:1.3.9") // Paper
 | 
						|
 
 | 
						|
-    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...
 | 
						|
     compileOnly(annotations)
 | 
						|
     testCompileOnly(annotations)
 | 
						|
 
 | 
						|
+    // Paper start - add checker
 | 
						|
+    val checkerQual = "org.checkerframework:checker-qual:3.21.0"
 | 
						|
+    compileOnlyApi(checkerQual)
 | 
						|
+    testCompileOnly(checkerQual)
 | 
						|
+    // Paper end
 | 
						|
+
 | 
						|
     testImplementation("junit:junit:4.13.2")
 | 
						|
     testImplementation("org.hamcrest:hamcrest-library:1.3")
 | 
						|
     testImplementation("org.ow2.asm:asm-tree:9.2")
 | 
						|
@@ -0,0 +0,0 @@ tasks.withType<Javadoc> {
 | 
						|
     options.links(
 | 
						|
         "https://guava.dev/releases/31.0.1-jre/api/docs/",
 | 
						|
         "https://javadoc.io/doc/org.yaml/snakeyaml/1.30/",
 | 
						|
-        "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
 | 
						|
         "https://javadoc.io/doc/net.md-5/bungeecord-chat/1.16-R0.4/",
 | 
						|
     )
 | 
						|
 
 |