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

io.ebean.tools.init.Main Maven / Gradle / Ivy

There is a newer version: 1.12
Show newest version
package io.ebean.tools.init;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Main {

  public static String VERSION = "v1.2";

  private static final Logger log = LoggerFactory.getLogger(Main.class);

  public static void main(String[] args) {

    DetectionMeta meta = new ProjectDetection().run();

    try {
      Detection detection = new Detection(meta);
      detection.run();

      new Interaction(detection).run();

    } catch (Exception e) {
      log.error("Error running detection on project", e);
    }

  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy