- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for AbstractUpgradeGoal (0.07 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ApplyTest.java
} @Nested @DisplayName("Integration with AbstractUpgradeGoal") class IntegrationTests { @Test @DisplayName("should inherit behavior from AbstractUpgradeGoal") void shouldInheritBehaviorFromAbstractUpgradeGoal() { // This test verifies that Apply inherits the model version logic from AbstractUpgradeGoal // The actual logic is tested in AbstractUpgradeGoalTestRegistered: 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/test/java/org/apache/maven/cling/invoker/mvnup/goals/CheckTest.java
} @Nested @DisplayName("Integration with AbstractUpgradeGoal") class IntegrationTests { @Test @DisplayName("should inherit behavior from AbstractUpgradeGoal") void shouldInheritBehaviorFromAbstractUpgradeGoal() { // This test verifies that Check inherits the model version logic from AbstractUpgradeGoal // The actual logic is tested in AbstractUpgradeGoalTestRegistered: 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/main/java/org/apache/maven/cling/invoker/mvnup/goals/Apply.java
import org.apache.maven.api.di.Singleton; import org.apache.maven.cling.invoker.mvnup.UpgradeContext; /** * The "apply" goal implementation. */ @Named("apply") @Singleton public class Apply extends AbstractUpgradeGoal { @Inject public Apply(StrategyOrchestrator orchestrator) { super(orchestrator); } @Override protected boolean shouldSaveModifications() { return true; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Check.java
import org.apache.maven.api.di.Singleton; import org.apache.maven.cling.invoker.mvnup.UpgradeContext; /** * The "check" goal implementation. */ @Named("check") @Singleton public class Check extends AbstractUpgradeGoal { @Inject public Check(StrategyOrchestrator orchestrator) { super(orchestrator); } @Override protected boolean shouldSaveModifications() { return false; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.5K bytes - Viewed (0)