Package org.apache.ivy.ant

Examples of org.apache.ivy.ant.IvyExclude


            ivyConflict.setMatcher(getSettings().substitute(attributes.getValue("matcher")));
            currentPluginDescriptor.addConflict(ivyConflict);
        }

        public void pluginExcludeStarted(Attributes attributes) {
            IvyExclude ivyExclude = new IvyExclude();
            ivyExclude.setOrg(getSettings().substitute(attributes.getValue("org")));
            ivyExclude.setModule(getSettings().substitute(attributes.getValue("module")));
            ivyExclude.setArtifact(getSettings().substitute(attributes.getValue("artifact")));
            ivyExclude.setType(getSettings().substitute(attributes.getValue("type")));
            ivyExclude.setExt(getSettings().substitute(attributes.getValue("ext")));
            ivyExclude.setMatcher(getSettings().substitute(attributes.getValue("matcher")));
            currentPluginDescriptor.addExcludes(ivyExclude);
        }
View Full Code Here


        dependencies.add(dep);
        return dep;
    }

    public IvyExclude createExclude() {
        IvyExclude ex = new IvyExclude();
        excludes.add(ex);
        return ex;
    }
View Full Code Here

TOP

Related Classes of org.apache.ivy.ant.IvyExclude

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.