Package org.apache.tools.ant.taskdefs

Examples of org.apache.tools.ant.taskdefs.Expand.perform()


            file.getName() + ".extracted");
           dir.mkdir();
        Expand expand = (Expand)getProject().createTask("unjar");
        expand.setSrc(file);
        expand.setDest(dir);
        expand.perform();
        importFile = new File(dir, "build.xml");
        if (! importFile.exists()) {
          throw new BuildException("Cannot find a 'build.xml' file in " +
              file.getName());
        }
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.