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

io.ebeaninternal.dbmigration.Detect Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.dbmigration;

import io.ebean.DatabaseBuilder;

/**
 * Detect existence of JAXB
 */
public class Detect {

  /**
   * Return true if JAXB is present.
   */
  public static boolean isJAXBPresent(DatabaseBuilder.Settings config) {
    return config.getClassLoadConfig().isPresent("jakarta.xml.bind.JAXBException");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy