19 lines
		
	
	
	
		
			1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Kyle Wood <kyle@denwav.dev>
 | 
						|
Date: Fri, 4 Dec 2020 15:53:19 -0800
 | 
						|
Subject: [PATCH] Enable multi-release plugin jars
 | 
						|
 | 
						|
 | 
						|
diff --git a/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java b/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java
 | 
						|
+++ b/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java
 | 
						|
@@ -0,0 +0,0 @@ public final class PluginClassLoader extends URLClassLoader { // Spigot
 | 
						|
         this.description = description;
 | 
						|
         this.dataFolder = dataFolder;
 | 
						|
         this.file = file;
 | 
						|
-        this.jar = new JarFile(file);
 | 
						|
+        this.jar = new JarFile(file, true, java.util.zip.ZipFile.OPEN_READ, JarFile.runtimeVersion()); // Paper - enable multi-release jars for Java 9+
 | 
						|
         this.manifest = jar.getManifest();
 | 
						|
         this.url = file.toURI().toURL();
 | 
						|
         this.libraryLoader = libraryLoader;
 |