Package org.apache.ivy.ant

Examples of org.apache.ivy.ant.IvyDependencyExclude


            currentPluginDescriptor.addDependency(ivyDependency);
            currentPluginDependency = ivyDependency;
        }

        public void pluginDependencyExcludeStarted(Attributes attributes) {
            IvyDependencyExclude ivyDependencyExclude = currentPluginDependency.createExclude();
            ivyDependencyExclude.setOrg(getSettings().substitute(attributes.getValue("org")));
            ivyDependencyExclude.setModule(getSettings().substitute(attributes.getValue("module")));
            ivyDependencyExclude.setName(getSettings().substitute(attributes.getValue("name")));
            ivyDependencyExclude.setExt(getSettings().substitute(attributes.getValue("ext")));
            ivyDependencyExclude.setType(getSettings().substitute(attributes.getValue("type")));
            ivyDependencyExclude.setMatcher(getSettings().substitute(attributes.getValue("matcher")));

        }
View Full Code Here

TOP

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

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.