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

org.pitest.process.DefaultJavaExecutableLocator Maven / Gradle / Ivy

There is a newer version: 1.17.1
Show newest version
package org.pitest.process;

/**
 * Returns the java binary from JAVA_HOME
 */
public class DefaultJavaExecutableLocator implements JavaExecutableLocator {

  @Override
  public String javaExecutable() {
    final String separator = System.getProperty("file.separator");
    return System.getProperty("java.home") + separator + "bin" + separator
        + "java";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy