Fix "No library found for org.w3c.dom"

This commit is contained in:
Ben Fry
2021-07-10 06:54:42 -04:00
parent 2d6cdafccd
commit 1bd5288b8d
2 changed files with 19 additions and 18 deletions

View File

@@ -401,6 +401,10 @@ public class JavaBuild {
if (pkg.startsWith("processing.event.")) return true;
if (pkg.startsWith("processing.opengl.")) return true;
if (pkg.startsWith("org.omg")) return true;
if (pkg.startsWith("org.w3c.dom")) return true;
if (pkg.startsWith("org.xml.sax")) return true;
return false;
}