Java Code Examples for org.gradle.internal.jvm.Jvm#getStandaloneJre()

The following examples show how to use org.gradle.internal.jvm.Jvm#getStandaloneJre() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AvailableJavaHomes.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
 *
 * @return The JRE home directory, or null if not found
 */
public static File getBestJre() {
    Jvm jvm = Jvm.current();
    Jre jre = jvm.getStandaloneJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    jre = jvm.getJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    return null;
}
 
Example 2
Source File: AvailableJavaHomes.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
 *
 * @return The JRE home directory, or null if not found
 */
public static File getBestJre() {
    Jvm jvm = Jvm.current();
    Jre jre = jvm.getStandaloneJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    jre = jvm.getJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    return null;
}
 
Example 3
Source File: AvailableJavaHomes.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
 *
 * @return The JRE home directory, or null if not found
 */
public static File getBestJre() {
    Jvm jvm = Jvm.current();
    Jre jre = jvm.getStandaloneJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    jre = jvm.getJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    return null;
}
 
Example 4
Source File: AvailableJavaHomes.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
 *
 * @return The JRE home directory, or null if not found
 */
public static File getBestJre() {
    Jvm jvm = Jvm.current();
    Jre jre = jvm.getStandaloneJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    jre = jvm.getJre();
    if (jre != null) {
        return jre.getHomeDir();
    }
    return null;
}