Package org.codehaus.groovy.ant

Examples of org.codehaus.groovy.ant.AntProjectPropertiesDelegate


            }
            final Project project = task.getProject();
            script.setProperty("ant", new AntBuilder(task));
            script.setProperty("project", project);
            script.setProperty("build", task.getBuild());
            script.setProperty("properties", new AntProjectPropertiesDelegate(project));
            script.setProperty("target", task.getOwningTarget());
            script.setProperty("task", this);
            script.setProperty("args", task.getCommandLine().getCommandline());
            script.setProperty("pom", task.getBuild().getPom());
            script.run();
View Full Code Here

TOP

Related Classes of org.codehaus.groovy.ant.AntProjectPropertiesDelegate

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.