- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 50 for setConfiguration (0.16 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
new MojoExecution(forkedMojoDescriptor, mojoExecution.getExecutionId()); XmlNode forkedConfiguration = execution.getConfiguration(); forkedExecution.setConfiguration(forkedConfiguration); mojoExecutionConfigurator(forkedExecution).configure(project, forkedExecution, true);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/merge/MavenToolchainMerger.java
Xpp3Dom src = (Xpp3Dom) source.getConfiguration(); if (src != null) { Xpp3Dom tgt = (Xpp3Dom) target.getConfiguration(); if (tgt == null) { tgt = Xpp3Dom.mergeXpp3Dom(new Xpp3Dom(src), tgt); } else { tgt = Xpp3Dom.mergeXpp3Dom(tgt, src); } target.setConfiguration(tgt); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
return mojoDescriptor; } public org.codehaus.plexus.util.xml.Xpp3Dom getConfiguration() { return configuration; } public void setConfiguration(org.codehaus.plexus.util.xml.Xpp3Dom configuration) { this.configuration = configuration; } public void setConfiguration(XmlNode configuration) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java
if (parentDom != null) { for (ReportSet execution : reportPlugin.getReportSets()) { Xpp3Dom childDom = (Xpp3Dom) execution.getConfiguration(); childDom = Xpp3Dom.mergeXpp3Dom(childDom, new Xpp3Dom(parentDom)); execution.setConfiguration(childDom); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java
pomConfiguration = pluginExecution.getDelegate().getConfiguration(); } else if (allowPluginLevelConfig) { pomConfiguration = plugin.getDelegate().getConfiguration(); } XmlNode mojoConfiguration = mojoExecution.getConfiguration() != null ? mojoExecution.getConfiguration().getDom() : null;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
} pluginManagement.addPlugin(sitePlugin); } Xpp3Dom configuration = (Xpp3Dom) sitePlugin.getConfiguration(); if (configuration == null) { configuration = new Xpp3Dom("configuration", location); sitePlugin.setConfiguration(configuration); } Xpp3Dom reportPlugins = configuration.getChild("reportPlugins");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 9.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
execution.setLocation("goals", location); XmlNode lifecycleConfiguration = mojo.getConfiguration(); if (lifecycleConfiguration != null) { execution.setConfiguration(new Xpp3Dom(lifecycleConfiguration)); } if (mojo.getDependencies() != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java
plugin.setVersion(extension.getVersion()); XmlNode configuration = extension.getDelegate().getConfiguration(); if (configuration != null) { plugin.setConfiguration(new Xpp3Dom(configuration)); } extensionPlugins.add(plugin); } for (Plugin plugin : build.getPlugins()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.8K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
configuration.addChild(configurationChild); ToolchainModel toolchain = new ToolchainModel(); toolchain.setType("TYPE"); toolchain.setProvides(props); toolchain.setConfiguration(configuration); PersistedToolchains persistedToolchains = new PersistedToolchains(); persistedToolchains.setToolchains(Collections.singletonList(toolchain));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 14K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
plugin.setLocation("version", new InputLocation(12, 34, defaultBindings)); MojoExecution result = new MojoExecution(plugin, goal, executionId); result.setConfiguration(XmlNode.newInstance(executionId + "-" + goal)); result.setMojoDescriptor(mojoDescriptor); result.setLifecyclePhase(mojoDescriptor.getPhase()); return result; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0)