Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRemainingProjects (0.07 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            assertTrue(result.isPresent(), "Expected " + result + ".isPresent() to return true");
            assertEquals(asList("test:B"), result.get().getRemainingProjects());
        }
    
        @Test
        void resumeFromIsIgnoredWhenFirstProjectFails() {
            MavenProject projectA = createFailedMavenProject("A");
            MavenProject projectB = createMavenProject("B");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

        }
    
        /**
         * Returns the projects that still need to be built when resuming.
         * @return A list containing the group and artifact id of the projects.
         */
        public List<String> getRemainingProjects() {
            return this.remainingProjects;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

        private Properties convertToProperties(final BuildResumptionData buildResumptionData) {
            Properties properties = new Properties();
    
            String value = String.join(PROPERTY_DELIMITER, buildResumptionData.getRemainingProjects());
            properties.setProperty(REMAINING_PROJECTS, value);
    
            return properties;
        }
    
        @Override
        public void applyResumptionData(MavenExecutionRequest request, MavenProject rootProject) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top