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);
}
}
|