diff mxtool/ClasspathDump.java @ 14914:a6bd486b1b44

Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 16:21:49 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mxtool/ClasspathDump.java	Tue Apr 01 16:21:49 2014 +0200
@@ -0,0 +1,9 @@
+public class ClasspathDump {
+    public static void main(String[] args) {
+        System.out.print(System.getProperty("sun.boot.class.path"));
+        System.out.print("|");
+        System.out.print(System.getProperty("java.ext.dirs"));
+        System.out.print("|");
+        System.out.print(System.getProperty("java.endorsed.dirs"));
+    }
+}
\ No newline at end of file