public final class RuntimeBaseline {
    private RuntimeBaseline() {
    }

    public static void main(String[] args) {
        System.out.printf(
                "spec=%s runtime=%s vendor=%s vm=%s os=%s arch=%s%n",
                System.getProperty("java.specification.version"),
                System.getProperty("java.runtime.version"),
                System.getProperty("java.vendor"),
                System.getProperty("java.vm.name"),
                System.getProperty("os.name"),
                System.getProperty("os.arch"));
    }
}
