Examples of PropertiesManager


Examples of org.openbravo.utils.PropertiesManager

  @Override
  public void execute() throws BuildException {
    log4j.info("Checking Tomcat's JVM version...");

    final String jvmVersion = new ServerConnection().getCheck("jvm-version");
    final String minJvmVersion = new PropertiesManager().getProperty("jvm-version");

    final String msg = "Current Tomcat's JVM version: " + jvmVersion
        + " minimum required version: " + minJvmVersion;

    if (Version.compareVersion(jvmVersion, minJvmVersion) < 0)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.