forked from openrs2/openrs2
I'm very keen on being able to use the jdk.jartool module (which is only available in JDK11 onwards) as it allows us to avoid shelling out to jarsigner entirely. 11 is the current LTS release and is already widespread in Linux distributions, so I think it's reasonable to require it. This commit removes the jsobject module. We might need to re-add it in the future (if jdk.jsobject is removed from the JDK). However, it was only necessary in 8 because modern versions of 8 tended to be distributed without plugin.jar. JDK11 is distributed with the jdk.jsobject module. Signed-off-by: Graham <gpe@openrs2.dev>feat/deob-ir
parent
a096eaf288
commit
164e02cbce
@ -1,20 +0,0 @@ |
||||
plugins { |
||||
`java-library` |
||||
`maven-publish` |
||||
} |
||||
|
||||
publishing { |
||||
publications.create<MavenPublication>("maven") { |
||||
from(components["java"]) |
||||
|
||||
pom { |
||||
packaging = "jar" |
||||
name.set("OpenRS2 JavaScript Object") |
||||
description.set( |
||||
""" |
||||
Stubs for the netscape.javascript package. |
||||
""".trimIndent() |
||||
) |
||||
} |
||||
} |
||||
} |
@ -1,12 +0,0 @@ |
||||
package netscape.javascript; |
||||
|
||||
import java.applet.Applet; |
||||
|
||||
public abstract class JSObject { |
||||
public static JSObject getWindow(Applet applet) { |
||||
return null; |
||||
} |
||||
|
||||
public abstract Object call(String methodName, Object... args); |
||||
public abstract Object eval(String s); |
||||
} |
Loading…
Reference in new issue