Package org.apache.tools.ant.taskdefs

Examples of org.apache.tools.ant.taskdefs.LoadProperties


  public Hashtable getProperties(String workingDir) throws IOException {
    // TODO: keep a record of the projects created, this is how we will cache the properties
    Project project = new Project();
    project.setName(workingDir);
   
    LoadProperties props = new LoadProperties();
    props.setProject(project);
   
    project.setProperty("project.home", workingDir);
   
    props.setSrcFile(new File(workingDir + File.separatorChar + "forrest.properties"));
    props.execute();
   
    props.setSrcFile(new File(FORREST_DEFAULT_PROPERTIES_FILE));
    props.execute();
   
    project.setProperty("forrest.home", FORREST_HOME);
    project.setProperty("forrest.plugins", FORREST_PLUGINS);
   
    return project.getProperties();
View Full Code Here

TOP

Related Classes of org.apache.tools.ant.taskdefs.LoadProperties

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.