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

it.unibz.inf.ontop.cli.OntopVersion Maven / Gradle / Ivy

There is a newer version: 5.2.1.1
Show newest version
package it.unibz.inf.ontop.cli;

import com.github.rvesse.airline.annotations.Command;
import it.unibz.inf.ontop.utils.VersionInfo;

@Command(name = "--version",
        description = "Show version of ontop")
public class OntopVersion implements OntopCommand{

    @Override
    public void run() {
        //String version = getClass().getPackage().getImplementationVersion();

        VersionInfo versionInfo = VersionInfo.getVersionInfo();

        System.out.println(String.format("ontop version %s", versionInfo.toString()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy