public static void main(String... args) {
ProcessEntryPoint entryPoint = ProcessEntryPoint.createForArguments(args);
new ProcessLogging().configure(entryPoint.getProps(), "/org/sonar/search/logback.xml");
SearchServer searchServer = new SearchServer(entryPoint.getProps());
entryPoint.launch(searchServer);
}
}