Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for multiModuleProjectDirectory (0.12 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

    /**
     * CliRequest
     */
    @Deprecated
    public class CliRequest {
        String[] args;
    
        CommandLine commandLine;
    
        ClassWorld classWorld;
    
        String workingDirectory;
    
        File multiModuleProjectDirectory;
    
        Path rootDirectory;
    
        Path topDirectory;
    
        boolean verbose;
    
        boolean quiet;
    
        boolean showErrors = true;
    
        Properties userProperties = new Properties();
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 08 08:49:11 GMT 2024
    - 2.8K bytes
    - Click Count (0)
  2. .teamcity/mvnw.cmd

    @REM work with both Windows and non-Windows executions.
    set MAVEN_CMD_LINE_ARGS=%*
    
    %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                            request.getPom().getParent());
                    return request.getPom();
                }
    
                return rootProjectPom.toFile();
            }
        }
    
        /**
         * multiModuleProjectDirectory in MavenExecutionRequest is not always the parent of the request pom.
         * We should always check whether the request pom project is collected.
         * The integration tests for MNG-6223 are examples for this scenario.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  4. mvnw.cmd

    set MAVEN_CMD_LINE_ARGS=%*
    
    %MAVEN_JAVA_EXE% ^
      %JVM_CONFIG_MAVEN_PROPS% ^
      %MAVEN_OPTS% ^
      %MAVEN_DEBUG_OPTS% ^
      -classpath %WRAPPER_JAR% ^
      "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
      %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 14 22:24:15 GMT 2024
    - 7.5K bytes
    - Click Count (0)
  5. apache-maven/src/assembly/maven/bin/mvn

      \"-Dclassworlds.conf=$CLASSWORLDS_CONF\" \
      \"-Dmaven.home=$MAVEN_HOME\" \
      \"-Dmaven.mainClass=$MAVEN_MAIN_CLASS\" \
      \"-Dlibrary.jline.path=${MAVEN_HOME}/lib/jline-native\" \
      \"-Dmaven.multiModuleProjectDirectory=$MAVEN_PROJECTBASEDIR\" \
      $LAUNCHER_CLASS \
      $MAVEN_ARGS"
    
    # Add remaining arguments with proper quoting
    for arg in "$@"; do
        cmd="$cmd \"$arg\""
    done
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 9.2K bytes
    - Click Count (0)
Back to Top