applesingle/tools/asu/src/main/java/io/github/applecommander/applesingle/tools/asu/VersionProvider.java

10 lines
398 B
Java

package io.github.applecommander.applesingle.tools.asu;
import picocli.CommandLine.IVersionProvider;
/** Display version information. Note that this is dependent on the Spring Boot Gradle plugin configuration. */
public class VersionProvider implements IVersionProvider {
public String[] getVersion() {
return new String[] { Main.class.getPackage().getImplementationVersion() };
}
}