mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 04:55:47 +01:00
Upgrade ASM to 6.1.1 to allow Java 9 and 10 plugins to load
This commit is contained in:
parent
f913837a9d
commit
aedd155be1
@ -1,4 +1,4 @@
|
|||||||
From d6c062cb8c337535554a3fcb0008ede65a33c86b Mon Sep 17 00:00:00 2001
|
From 15b5224e92a45ca15a6e5d34f97734922e539b92 Mon Sep 17 00:00:00 2001
|
||||||
From: Techcable <Techcable@outlook.com>
|
From: Techcable <Techcable@outlook.com>
|
||||||
Date: Thu, 3 Mar 2016 13:20:33 -0700
|
Date: Thu, 3 Mar 2016 13:20:33 -0700
|
||||||
Subject: [PATCH] Use ASM for event executors.
|
Subject: [PATCH] Use ASM for event executors.
|
||||||
@ -6,18 +6,23 @@ Subject: [PATCH] Use ASM for event executors.
|
|||||||
Uses method handles for private or static methods.
|
Uses method handles for private or static methods.
|
||||||
|
|
||||||
diff --git a/pom.xml b/pom.xml
|
diff --git a/pom.xml b/pom.xml
|
||||||
index c6bdf44e..31b6f51b 100644
|
index 8d4032e2..21a4a8be 100644
|
||||||
--- a/pom.xml
|
--- a/pom.xml
|
||||||
+++ b/pom.xml
|
+++ b/pom.xml
|
||||||
@@ -128,6 +128,12 @@
|
@@ -128,6 +128,17 @@
|
||||||
<version>1.3</version>
|
<version>1.3</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
+ <!-- ASM -->
|
+ <!-- ASM -->
|
||||||
+ <dependency>
|
+ <dependency>
|
||||||
+ <groupId>org.ow2.asm</groupId>
|
+ <groupId>org.ow2.asm</groupId>
|
||||||
+ <artifactId>asm-all</artifactId>
|
+ <artifactId>asm</artifactId>
|
||||||
+ <version>5.0.4</version>
|
+ <version>6.1.1</version>
|
||||||
|
+ </dependency>
|
||||||
|
+ <dependency>
|
||||||
|
+ <groupId>org.ow2.asm</groupId>
|
||||||
|
+ <artifactId>asm-commons</artifactId>
|
||||||
|
+ <version>6.1.1</version>
|
||||||
+ </dependency>
|
+ </dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
@ -422,5 +427,5 @@ index d8b9c244..40fd71dc 100644
|
|||||||
eventSet.add(new TimedRegisteredListener(listener, executor, eh.priority(), plugin, eh.ignoreCancelled()));
|
eventSet.add(new TimedRegisteredListener(listener, executor, eh.priority(), plugin, eh.ignoreCancelled()));
|
||||||
} else {
|
} else {
|
||||||
--
|
--
|
||||||
2.14.1
|
2.17.0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user