Rev 7033 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.erggroup.buildtool.indef;import com.erggroup.buildtool.ripple.ReleaseManager;import com.erggroup.buildtool.ripple.RippleEngine;import org.apache.log4j.Logger;import org.apache.log4j.xml.DOMConfigurator;public class Indef{/*** @aggregation shared*/protected ReleaseManager mReleaseManager;/*** @aggregation shared*/protected RippleEngine mRippleEngine;private static final Logger mLogger = Logger.getLogger(Indef.class);public static void main(String[] args){String abtdXml = new String("abtd.xml");DOMConfigurator.configure(abtdXml);mLogger.debug("main");ReleaseManager releaseManager =new ReleaseManager("jdbc:oracle:thin:@auperaprm01:1521:RELEASEM", "RELEASE_MANAGER", "RELEASE_MANAGER");try{releaseManager.indefinitePause(true);}catch( Exception e ){}}}