- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for orchestrated (0.05 seconds)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeWorkflowIntegrationTest.java
new PluginUpgradeStrategy(), new InferenceStrategy()); StrategyOrchestrator orchestrator = new StrategyOrchestrator(strategies); applyGoal = new Apply(orchestrator); checkGoal = new Check(orchestrator); } @Nested @DisplayName("Model Version Upgrade") class ModelVersionUpgradeTests { @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 9.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Apply.java
/** * 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; } @Override public int execute(UpgradeContext context) throws Exception {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 1.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Check.java
/** * 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; } @Override public int execute(UpgradeContext context) throws Exception {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 1.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
import org.apache.maven.api.di.Inject; import org.apache.maven.api.di.Named; import org.apache.maven.api.di.Singleton; import org.apache.maven.cling.invoker.mvnup.UpgradeContext; /** * domtrip-based orchestrator for executing different upgrade strategies. * * <p>This class provides the same functionality as StrategyOrchestrator but works * with domtrip-based strategies for superior formatting preservation. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 7K bytes - Click Count (0)