Package org.apache.ivy.ant

Examples of org.apache.ivy.ant.IvyInfo


        this.easyAntMDParserClassName = easyAntMDParserClassName;
    }

    public void execute() throws BuildException {
        if (buildModule != null && buildModule.exists()) {
            IvyInfo info = new IvyInfo();
            info.setFile(buildModule);
            // Not sure we should bound IvyInfo to easyantIvyInstance
            info.setSettingsRef(IvyInstanceHelper.buildEasyAntIvyReference(getProject()));
            initTask(info).execute();
            getProject().setName(getProject().getProperty("ivy.module"));
        }
        if (buildModule != null && buildModule.exists()) {
            // make sure it's not a directory (this falls into the ultra
View Full Code Here

TOP

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

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.