view mxtool/ClasspathDump.java @ 16620:a4b7356f4a2b

Unless the current revision is tagged as a release, make the Graal version 0.(n+1)-dev, in order to differentiate between release and development versions.
author Chris Seaton <chris.seaton@oracle.com>
date Wed, 30 Jul 2014 11:34:10 +0200
parents a6bd486b1b44
children
line wrap: on
line source

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"));
    }
}