Package org.drools.compiler.kproject.xml

Examples of org.drools.compiler.kproject.xml.PomModel.addDependency()


        for (Artifact dep : mavenProject.getArtifacts()) {
            String scope = dep.getScope();
            if ("provided".equals(scope) || "test".equals(scope)) {
                continue;
            }
            pomModel.addDependency(new ReleaseIdImpl(dep.getGroupId(),
                    dep.getArtifactId(),
                    dep.getVersion()));
        }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.