Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for remainingProjects (0.23 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
        public BuildResumptionData(final List<String> remainingProjects) {
            this.remainingProjects = remainingProjects;
        }
    
        /**
         * Returns the projects that still need to be built when resuming.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionDataRepositoryTest.java

        @Test
        void resumeFromPropertyGetsApplied() {
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
            Properties properties = new Properties();
            properties.setProperty("remainingProjects", ":module-a");
    
            repository.applyResumptionProperties(request, properties);
    
            assertThat(request.getProjectActivation().getOptionalActiveProjectSelectors(), is(singleton(":module-a")));
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

            }
    
            List<String> remainingProjects = sortedProjects.stream()
                    .filter(project -> result.getBuildSummary(project) == null
                            || result.getBuildSummary(project) instanceof BuildFailure)
                    .map(project -> project.getGroupId() + ":" + project.getArtifactId())
                    .collect(Collectors.toList());
    
            if (remainingProjects.isEmpty()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/execution/resume.properties

    remainingProjects=example:module-c...
    Properties
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Feb 13 10:32:34 GMT 2021
    - 35 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

    public class DefaultBuildResumptionDataRepository implements BuildResumptionDataRepository {
        private static final String RESUME_PROPERTIES_FILENAME = "resume.properties";
        private static final String REMAINING_PROJECTS = "remainingProjects";
        private static final String PROPERTY_DELIMITER = ", ";
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultBuildResumptionDataRepository.class);
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                                request.getPom()));
                int resumeFromProjectIndex = projects.indexOf(resumingFromProject);
                List<MavenProject> retainingProjects = result.subList(resumeFromProjectIndex, projects.size());
    
                result = includeAlsoMakeTransitively(retainingProjects, request, graph);
            }
    
            return result;
        }
    
        private List<MavenProject> trimExcludedProjects(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
Back to top