![JAR search and dependency download from the Maven repository](/logo.png)
org.igfay.util.AntFig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfig Show documentation
Show all versions of jfig Show documentation
A Configuration utility that provides simple, flexible and powerful functionality for managing one or more configurations in a java environment. It uses a combination of a hierarchy of configuration files, substitution variables and property variables.
The newest version!
package org.igfay.util;
import org.apache.log4j.Logger;
import org.apache.tools.ant.Main;
import org.igfay.jfig.JFig;
/**
* @author conrad4
*
* This class brings the power and flexibility of JFig to Ant.
* It takes advantage of the JFig functionality to automatically load selected values as properties.
* You can put your Ant properties in your config file, then use AntFig to process configuration and call Ant.
*
* This gives you the advantage of storing all your configuration in one central location in
* addition to the additional JFig functionality.
*/
public class AntFig {
private static Logger logger = Logger.getLogger(AntFig.class);
public static void main(String[] args) {
JFig.getInstance();
Main.main(args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy