com.danielflower.apprunner.runners.AppRunnerFactory Maven / Gradle / Ivy
package com.danielflower.apprunner.runners;
import java.io.File;
public interface AppRunnerFactory {
String id();
String sampleProjectName();
String description();
String[] startCommands();
AppRunner appRunner(File folder);
String versionInfo();
boolean canRun(File appDirectory);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy