Skip to content

Commit

Permalink
Exclude more things and add support for providing exclusions as JVM a…
Browse files Browse the repository at this point in the history
…rguments
  • Loading branch information
ChachyDev committed Aug 6, 2021
1 parent b8d75e6 commit 04f9f65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
}

group "org.bookmc"
version "0.7.2${local ? "+local" : ""}"
version "0.7.3${local ? "+local" : ""}"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ public QuiltClassLoader() {
addClassLoaderExclusion("java.");
addClassLoaderExclusion("javax.");
addClassLoaderExclusion("org.xml.");
addClassLoaderExclusion("org.w3c.");
addClassLoaderExclusion("org.lwjgl.");
addClassLoaderExclusion("org.objectweb.");
addClassLoaderExclusion("org.apache.logging.");
addClassLoaderExclusion("org.bookmc.loader.");

for (String exclusion : System.getProperty("quilt.classloader.exclusions", "").split(",")) {
addClassLoaderExclusion(exclusion);
}
}

@Override
Expand Down

0 comments on commit 04f9f65

Please sign in to comment.