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