Package org.kohsuke.stapler.jetty

Examples of org.kohsuke.stapler.jetty.JettyRunner


*/
public class HookApp {
    public static void main(String[] args) throws Exception {
//        GitHub.connect().getMyself().getRepository("sandbox").createWebHook(
//                new URL("http://173.203.118.45:18080/"), EnumSet.of(GHEvent.PULL_REQUEST));
        JettyRunner jr = new JettyRunner(new HookApp());
        jr.addHttpListener(8080);
        jr.start();
    }
View Full Code Here

TOP

Related Classes of org.kohsuke.stapler.jetty.JettyRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.