All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.igfay.util.AntFig Maven / Gradle / Ivy

Go to download

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