Package com.nirima.jenkins.bridge

Examples of com.nirima.jenkins.bridge.BridgeRepository


            return "maven-repository";
        }

        public void doDynamic(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
            plugin.serveRequest(
                    new BridgeRepository(new ProjectBuildRepositoryRoot(null, build, build.getFullDisplayName()), null),
                    req.findAncestor(this).getUrl());
        }
View Full Code Here


        if( path.startsWith("/static") ) {
            super.doDynamic(req, rsp);
            return;
        }

        serveRequest(new BridgeRepository(null), req.getContextPath()+"/plugin/repository");
    }
View Full Code Here

TOP

Related Classes of com.nirima.jenkins.bridge.BridgeRepository

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.