Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.indef;
2
 
3
import com.erggroup.buildtool.ripple.ReleaseManager;
4
import com.erggroup.buildtool.ripple.RippleEngine;
5
 
7033 dpurdie 6
import org.slf4j.Logger;
7
import org.slf4j.LoggerFactory;
6914 dpurdie 8
 
9
public class Indef
10
{
11
  /**
12
   * @aggregation shared
13
   */
14
  protected ReleaseManager mReleaseManager;
15
 
16
  /**
17
   * @aggregation shared
18
   */
19
  protected RippleEngine mRippleEngine;
20
 
7033 dpurdie 21
  private static final Logger mLogger = LoggerFactory.getLogger(Indef.class);
6914 dpurdie 22
 
23
  public static void main(String[] args)
24
  {
25
    mLogger.debug("main");
26
 
27
    ReleaseManager releaseManager = 
28
      new ReleaseManager("jdbc:oracle:thin:@auperaprm01:1521:RELEASEM", "RELEASE_MANAGER", "RELEASE_MANAGER");
29
 
30
    try
31
    {
32
      releaseManager.indefinitePause(true);
33
    }
34
    catch( Exception e )
35
    {
36
    }
37
 
38
  }
39
}