Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for multiModuleProjectDirectory (0.37 sec)

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

    /**
     * CliRequest
     */
    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();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        }
    
        @Deprecated
        @Override
        public void setMultiModuleProjectDirectory(File directory) {
            this.multiModuleProjectDirectory = directory;
        }
    
        @Deprecated
        @Override
        public File getMultiModuleProjectDirectory() {
            return multiModuleProjectDirectory;
        }
    
        @Override
        public Path getRootDirectory() {
            if (rootDirectory == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
                File basedir = new File(basedirProperty);
                try {
                    cliRequest.multiModuleProjectDirectory = basedir.getCanonicalFile();
                } catch (IOException e) {
                    cliRequest.multiModuleProjectDirectory = basedir.getAbsoluteFile();
                }
            }
    
            // We need to locate the top level project which may be pointed at using
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  4. 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 \
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/bin/mvn.cmd

      "-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% ^
      %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top