
prompto.website.Application Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WebSite Show documentation
Show all versions of WebSite Show documentation
Prompto Documentation Web Site POM
The newest version!
package prompto.website;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import prompto.server.AppServer;
public class Application {
public static void main(String[] args) throws Throwable {
List argsList = new ArrayList<>(Arrays.asList(args));
argsList.add("-application");
argsList.add("web-site");
argsList.add("-version");
argsList.add("1.0.0");
AppServer.main(argsList.toArray(new String[argsList.size()]));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy