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: 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
|
2023-02-22 04:27:49 +01:00
|
|
|
index fade45ef475ae20922f5abea49a0f035d19b7819..264d712d3399d24cb01b85fc2d055d9fbf11b23a 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java
|
|
|
|
+++ b/src/main/java/org/bukkit/plugin/java/PluginClassLoader.java
|
2023-02-22 04:27:49 +01:00
|
|
|
@@ -59,7 +59,7 @@ public final class PluginClassLoader extends URLClassLoader implements io.paperm
|
2021-06-11 14:02:28 +02:00
|
|
|
this.description = description;
|
|
|
|
this.dataFolder = dataFolder;
|
|
|
|
this.file = file;
|
|
|
|
- this.jar = new JarFile(file);
|
2021-06-17 06:18:18 +02:00
|
|
|
+ this.jar = new JarFile(file, true, java.util.zip.ZipFile.OPEN_READ, JarFile.runtimeVersion()); // Paper - enable multi-release jars for Java 9+
|
2021-06-11 14:02:28 +02:00
|
|
|
this.manifest = jar.getManifest();
|
|
|
|
this.url = file.toURI().toURL();
|
|
|
|
this.libraryLoader = libraryLoader;
|