Package org.guvnor.common.services.project.builder.model

Examples of org.guvnor.common.services.project.builder.model.DeployResult


                final InternalKieModule kieModule = (InternalKieModule) builder.getKieModule();
                final ByteArrayInputStream input = new ByteArrayInputStream( kieModule.getBytes() );
                m2RepoService.deployJar( input,
                                         pom.getGav() );
               
                DeployResult deployResult = new DeployResult( pom.getGav().getGroupId(), pom.getGav().getArtifactId(), pom.getGav().getVersion() );    
                deployResult.setBuildResults(results)
                deployResultEvent.fire(deployResult);
                return deployResult;
            } else {
                DeployResult deployResult = new DeployResult();               
                deployResult.setBuildResults(results);
                deployResultEvent.fire(deployResult);
                return deployResult;
            }
        } catch ( Exception e ) {
            throw ExceptionUtilities.handleException( e );
View Full Code Here

TOP

Related Classes of org.guvnor.common.services.project.builder.model.DeployResult

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.