- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for remainingProjects (0.06 sec)
-
impl/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.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/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); assertEquals(singleton(":module-a"), request.getProjectActivation().getOptionalActiveProjectSelectors()); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/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()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java
@Singleton 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); @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 4.9K bytes - Viewed (0)