Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for MAVEN_HOME (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. maven-tests/mvnw

    MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}"
    MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")"
    
    exec_maven() {
      unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :
      exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD"
    }
    
    if [ -d "$MAVEN_HOME" ]; then
      verbose "found existing MAVEN_HOME at $MAVEN_HOME"
      exec_maven "$@"
    fi
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Thu Sep 25 18:22:49 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                context.systemPropertiesOverrides.put(Constants.MAVEN_HOME, result.toString());
                return result;
            } else {
                String mavenHome = System.getProperty(Constants.MAVEN_HOME);
                if (mavenHome == null) {
                    throw new IllegalStateException(
                            "local mode requires " + Constants.MAVEN_HOME + " Java System Property set");
                }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 07:39:11 GMT 2025
    - 25.5K bytes
    - Click Count (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // Windows paths.
            //
            String mavenHome = System.getProperty(Constants.MAVEN_HOME);
    
            if (mavenHome != null) {
                System.setProperty(
                        Constants.MAVEN_HOME,
                        getCanonicalPath(fileSystem.getPath(mavenHome)).toString());
            }
        }
    
        void cli(CliRequest cliRequest) throws Exception {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

        }
    
        protected void pushCoreProperties(C context) throws Exception {
            System.setProperty(
                    Constants.MAVEN_HOME,
                    context.invokerRequest.installationDirectory().toString());
        }
    
        /**
         * Note: this method is called twice from {@link #doInvoke(LookupContext)} and modifies context. First invocation
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
Back to Top