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

prompto.website.Application Maven / Gradle / Ivy

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