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

org.camunda.bpm.spring.boot.starter.CamundaBpmVersion Maven / Gradle / Ivy

package org.camunda.bpm.spring.boot.starter;

import org.camunda.bpm.engine.ProcessEngine;

public final class CamundaBpmVersion {

  private CamundaBpmVersion() {

  }

  /**
   * Return the full version string of the present Camunda codebase, or
   * {@code null} if it cannot be determined.
   * 
   * @return the version of Camunda or {@code null}
   * @see Package#getImplementationVersion()
   */
  public static String getVersion() {
    Package pkg = ProcessEngine.class.getPackage();
    return (pkg != null ? pkg.getImplementationVersion() : null);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy