Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 174 for java_home (0.19 sec)

  1. apache-maven/src/assembly/maven/bin/mvnDebug

    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven Debug Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_OPTS          (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC       (Optional) Flag to disable loading of mavenrc files.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvnyjp

    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven YourKit Profiler Startup Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME       Must point at your Java Development Kit installation.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 09:02:45 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/shared/validate

    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven Startup Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME       (Optional) Points to a Java installation.
    #   MAVEN_ARGS      (Optional) Arguments passed to Maven before CLI arguments.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

                executable = 'cmd.exe'
            } else {
                executable = "${workingDir}/${executable}"
            }
            builder.environment("JAVA_HOME", System.getProperty("java.home"))
            // // https://github.com/gradle/dotcom/issues/6071
            builder.environment("JAVA_OPTS", "")
            return builder.build()
        }
    
        ExecResult run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

     */
    @ServiceScope(Scope.Global.class)
    public interface DaemonContext {
    
        /**
         * The unique identifier for this daemon.
         */
        String getUid();
    
        /**
         * The JAVA_HOME in use, as the canonical file.
         */
        File getJavaHome();
    
        JavaLanguageVersion getJavaVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

        static String probeVersion(File home) {
            def mvn = findMvnExecutable(home)
            def env = System.getenv().findAll { it.key != "M2" && it.key != "M2_HOME" }.collect { "${it.key}=${it.value}" }
            env += "JAVA_HOME=${System.getProperty("java.home")}"
            def process = [mvn.absolutePath, "--version"].execute(env, home)
            def exitValue = process.waitFor()
            if (exitValue != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaInstallationMetadata.java

         * @since 6.8
         */
        @Internal
        String getVendor();
    
        /**
         * The path to installation this tool belongs to.
         * <p>
         * This value matches what would be the content of {@code JAVA_HOME} for the given installation.
         *
         * @return the installation path
         */
        @Internal
        Directory getInstallationPath();
    
        /**
         * Returns true if this installation corresponds to the build JVM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. apache-maven/README.txt

        Unix-based operating systems (Linux, Solaris and Mac OS X)
          export PATH=/usr/local/apache-maven-4.x.y/bin:$PATH
        Windows
          set PATH="c:\program files\apache-maven-4.x.y\bin";%PATH%
    
      4) Make sure JAVA_HOME is set to the location of your JDK
    
      5) Run "mvn --version" to verify that it is correctly installed.
    
      For complete documentation, see https://maven.apache.org/download.html#Installation
    
      Licensing
      ---------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 13 20:21:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. Jenkinsfile.s390x

            stage('Build / Unit Test') {
                String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ForkingGradleHandle.java

            println("Working directory: " + execHandle.getDirectory());
            println("Environment vars:");
            println(format("    JAVA_HOME: %s", environment.get("JAVA_HOME")));
            println(format("    GRADLE_HOME: %s", environment.get("GRADLE_HOME")));
            println(format("    GRADLE_USER_HOME: %s", environment.get("GRADLE_USER_HOME")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top