- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MojoExecutionXPathContainer (0.11 sec)
-
impl/maven-core/src/test/java/org/apache/maven/lifecycle/MojoExecutionXPathContainer.java
import org.apache.maven.plugin.MojoExecution; import org.apache.maven.project.harness.Xpp3DomPointerFactory; public class MojoExecutionXPathContainer { private JXPathContext context; static { JXPathContextReferenceImpl.addNodePointerFactory(new Xpp3DomPointerFactory()); } public MojoExecutionXPathContainer(MojoExecution mojoExecution) throws IOException { context = JXPathContext.newContext(mojoExecution); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
assertEquals( "src/main/mdo/remote-resources.mdo", new MojoExecutionXPathContainer(executions.get(1)).getValue("configuration/models[1]/model")); assertEquals( "src/main/mdo/supplemental-model.mdo", new MojoExecutionXPathContainer(executions.get(4)).getValue("configuration/models[1]/model")); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0)