- Sort Score
- Result 10 results
- Languages All
Results 11 - 17 of 17 for UpgradeResult (0.09 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CheckTest.java
// Mock successful strategy execution when(mockOrchestrator.executeStrategies(Mockito.any(), Mockito.any())) .thenReturn(UpgradeResult.empty()); checkGoal.execute(context); // Verify that the Check-specific header is logged verify(context.logger).info("Maven Upgrade Tool - Check");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ApplyTest.java
// Mock successful strategy execution when(mockOrchestrator.executeStrategies(Mockito.any(), Mockito.any())) .thenReturn(UpgradeResult.empty()); applyGoal.execute(context); // Verify that the Apply-specific header is logged verify(context.logger).info("Maven Upgrade Tool - Apply");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 10:39:17 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
return !MODEL_VERSION_4_0_0.equals(targetModel); } @Override public String getDescription() { return "Upgrading POM model version"; } @Override public UpgradeResult doApply(UpgradeContext context, Map<Path, Document> pomMap) { String targetModelVersion = determineTargetModelVersion(context); Set<Path> processedPoms = new HashSet<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 16.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
} return false; } @Override public String getDescription() { return "Applying Maven 4 compatibility fixes"; } @Override public UpgradeResult doApply(UpgradeContext context, Map<Path, Document> pomMap) { Set<Path> processedPoms = new HashSet<>(); Set<Path> modifiedPoms = new HashSet<>(); Set<Path> errorPoms = new HashSet<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 22.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
} return false; } @Override public String getDescription() { return "Applying Maven inference optimizations"; } @Override public UpgradeResult doApply(UpgradeContext context, Map<Path, Document> pomMap) { Set<Path> processedPoms = new HashSet<>(); Set<Path> modifiedPoms = new HashSet<>(); Set<Path> errorPoms = new HashSet<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
} @Override public String getDescription() { return "Upgrading Maven plugins to recommended versions"; } @Override public UpgradeResult doApply(UpgradeContext context, Map<Path, Document> pomMap) { Set<Path> processedPoms = new HashSet<>(); Set<Path> modifiedPoms = new HashSet<>(); Set<Path> errorPoms = new HashSet<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 37K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
*/ protected int doUpgrade(UpgradeContext context, String targetModel, Map<Path, Document> pomMap) { // Execute strategies using the orchestrator try { UpgradeResult result = orchestrator.executeStrategies(context, pomMap); // Create .mvn directory if needed to avoid root directory warningsRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0)