/**
* Can't be started as is. Needs to be bootstrapped by sonar-application
*/
public static void main(String[] args) throws Exception {
ProcessEntryPoint entryPoint = ProcessEntryPoint.createForArguments(args);
Logging.init(entryPoint.getProps());
WebServer server = new WebServer(entryPoint.getProps());
entryPoint.launch(server);
}