Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMultiModuleProjectDirectory (0.23 sec)

  1. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            }
            return packaged;
        }
    
        private Path relativizeOutputFile(final Path outputFile) {
            Path projectBaseDirectory =
                    Paths.get(session.getRequest().getMultiModuleProjectDirectory().toURI());
            return projectBaseDirectory.relativize(outputFile);
        }
    
        /**
         * Tries to resolve the specified artifact from the artifacts of the given project.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                }
    
                throw e;
            }
        }
    
        private File getMultiModuleProjectPomFile(MavenExecutionRequest request) {
            File multiModuleProjectDirectory = request.getMultiModuleProjectDirectory();
            if (request.getPom().getParentFile().equals(multiModuleProjectDirectory)) {
                return request.getPom();
            } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        @Deprecated
        void setMultiModuleProjectDirectory(File file);
    
        /**
         * @since 3.3.0
         * @deprecated use {@link #getRootDirectory()} instead
         */
        @Deprecated
        File getMultiModuleProjectDirectory();
    
        /**
         * Sets the top directory of the project.
         *
         * @since 4.0.0
         */
        MavenExecutionRequest setTopDirectory(Path topDirectory);
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        @Override
        public void setMultiModuleProjectDirectory(File directory) {
            this.multiModuleProjectDirectory = directory;
        }
    
        @Deprecated
        @Override
        public File getMultiModuleProjectDirectory() {
            return multiModuleProjectDirectory;
        }
    
        @Override
        public Path getRootDirectory() {
            if (rootDirectory == null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
Back to top