Package org.eclipse.jgit.transport

Examples of org.eclipse.jgit.transport.Daemon


    }
    return randstring.toString();
  }

  private void serve() throws IOException {
    d = new Daemon();
    FileResolver<DaemonClient> resolver = new FileResolver<DaemonClient>();
    resolver.exportRepository(REPO_NAME, src.getRepository());
    d.setRepositoryResolver(resolver);
    d.start();
    uri = "git://localhost:" + d.getAddress().getPort() + "/" + REPO_NAME
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.transport.Daemon

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.