- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 81 for getDom (0.06 sec)
-
impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomPointerFactory.java
} @Override public NodePointer createNodePointer(QName name, Object object, Locale locale) { if (object instanceof org.codehaus.plexus.util.xml.Xpp3Dom xpp3Dom) { object = xpp3Dom.getDom(); } if (object instanceof XmlNode xmlNode) { return new Xpp3DomNodePointer(xmlNode); } return null; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); XmlNode executionConfiguration = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; if (executionConfiguration == null) { executionConfiguration = XmlNode.newInstance("configuration"); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java
pomConfiguration = plugin.getDelegate().getConfiguration(); } XmlNode mojoConfiguration = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; XmlNode mergedConfiguration = XmlService.merge(mojoConfiguration, pomConfiguration); mojoExecution.setConfiguration(mergedConfiguration);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
public String getGoal() { return delegate.getGoal(); } @Override public Optional<XmlNode> getConfiguration() { return Optional.of(delegate.getConfiguration()).map(Xpp3Dom::getDom); } @Override public String toString() { return delegate.toString(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 5.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); XmlNode executionConfiguration = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; if (executionConfiguration == null) { executionConfiguration = XmlNode.newInstance("configuration"); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
} XmlNode dom = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null; PlexusConfiguration pomConfiguration; if (dom == null) { pomConfiguration = new DefaultPlexusConfiguration("configuration"); } else {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
"org.apache.maven.its.plugins:maven-it-plugin:0.1:java", session, session.getCurrentProject()); XmlNode dom = MojoDescriptorCreator.convert(mojoDescriptor).getDom(); System.out.println(dom); } MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) throws Exception { List<TaskSegment> taskSegments =
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java
} else { this.pluginGroups = Collections.emptyList(); } return this; } @Override public Model getPom() { return pom; } @Override public DefaultPluginPrefixRequest setPom(Model pom) { this.pom = pom; return this; } @Override public List<RemoteRepository> getRepositories() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java
this.artifactId = artifactId; return this; } @Override public Model getPom() { return pom; } @Override public DefaultPluginVersionRequest setPom(Model pom) { this.pom = pom; return this; } @Override public List<RemoteRepository> getRepositories() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java
* repositories. */ Model getPom(); /** * Sets the POM whose build plugins are to be scanned for the version. * * @param pom The POM whose build plugins are to be scanned for the version, may be {@code null} to only search the * plugin repositories. * @return This request, never {@code null}. */ PluginVersionRequest setPom(Model pom); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0)