Subversion Repositories DevTools

Rev

Rev 6914 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6914 Rev 7033
Line 1... Line 1...
1
package com.erggroup.buildtool.indef;
1
package com.erggroup.buildtool.indef;
2
 
2
 
3
import com.erggroup.buildtool.ripple.ReleaseManager;
3
import com.erggroup.buildtool.ripple.ReleaseManager;
4
import com.erggroup.buildtool.ripple.RippleEngine;
4
import com.erggroup.buildtool.ripple.RippleEngine;
5
 
5
 
6
import org.apache.log4j.Logger;
6
import org.slf4j.Logger;
7
import org.apache.log4j.xml.DOMConfigurator;
7
import org.slf4j.LoggerFactory;
8
 
8
 
9
public class Indef
9
public class Indef
10
{
10
{
11
  /**
11
  /**
12
   * @aggregation shared
12
   * @aggregation shared
Line 16... Line 16...
16
  /**
16
  /**
17
   * @aggregation shared
17
   * @aggregation shared
18
   */
18
   */
19
  protected RippleEngine mRippleEngine;
19
  protected RippleEngine mRippleEngine;
20
 
20
 
21
  private static final Logger mLogger = Logger.getLogger(Indef.class);
21
  private static final Logger mLogger = LoggerFactory.getLogger(Indef.class);
22
 
22
 
23
  public static void main(String[] args)
23
  public static void main(String[] args)
24
  {
24
  {
25
    String abtdXml = new String("abtd.xml");
-
 
26
    DOMConfigurator.configure(abtdXml);
-
 
27
 
-
 
28
    mLogger.debug("main");
25
    mLogger.debug("main");
29
 
26
 
30
    ReleaseManager releaseManager = 
27
    ReleaseManager releaseManager = 
31
      new ReleaseManager("jdbc:oracle:thin:@auperaprm01:1521:RELEASEM", "RELEASE_MANAGER", "RELEASE_MANAGER");
28
      new ReleaseManager("jdbc:oracle:thin:@auperaprm01:1521:RELEASEM", "RELEASE_MANAGER", "RELEASE_MANAGER");
32
      
29