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

10 lines
398 B
Java
Raw Normal View History

2018-05-25 03:31:15 +00:00
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() };
}
}