All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jfxcore.compiler.VersionInfo Maven / Gradle / Ivy

// Copyright (c) 2021, 2023, JFXcore. All rights reserved.
// Use of this source code is governed by the BSD-3-Clause license that can be found in the LICENSE file.

package org.jfxcore.compiler;

public class VersionInfo {
    private static final String GROUP = "org.jfxcore";
    private static final String NAME = "fxml-compiler";
    private static final String VERSION = "0.8.6";

    public static String getGroup() {
        return GROUP;
    }

    public static String getName() {
        return NAME;
    }

    public static String getVersion() {
        return VERSION;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy