James Moger
2014-07-02 a582f7eebc6a12aefd203a1bdecbe06b10bd9d9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package de.akquinet.devops;
 
public class ManualUITestLaunch {
public static void main(String[] args) {
    int httpPort = 8080, httpsPort = 8443, shutdownPort = 8081;
    String gitblitPropertiesPath = "src/test/config/test-ui-gitblit.properties",
            usersPropertiesPath = "src/test/config/test-ui-users.conf";
 
    GitblitRunnable gitblitRunnable = new GitblitRunnable(httpPort,
            httpsPort, shutdownPort, gitblitPropertiesPath,
            usersPropertiesPath);
    Thread serverThread = new Thread(gitblitRunnable);
    serverThread.start();
}
}