- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 20 for Xpp3Dom (0.05 seconds)
-
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);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java
Xpp3Dom parentDom = (Xpp3Dom) reportPlugin.getConfiguration(); if (parentDom != null) { for (ReportSet execution : reportPlugin.getReportSets()) { Xpp3Dom childDom = (Xpp3Dom) execution.getConfiguration(); childDom = Xpp3Dom.mergeXpp3Dom(childDom, new Xpp3Dom(parentDom));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
Xpp3Dom configuration = (Xpp3Dom) plugin.getConfiguration(); if (configuration != null) { configuration = new Xpp3Dom(configuration); dom.addChild(configuration); } if (!plugin.getReportSets().isEmpty()) { Xpp3Dom reportSets = new Xpp3Dom("reportSets", plugin.getLocation("reportSets"));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultPluginConfigurationExpander.java
Xpp3Dom pluginConfiguration = (Xpp3Dom) plugin.getConfiguration(); if (pluginConfiguration != null) { for (PluginExecution execution : plugin.getExecutions()) { Xpp3Dom executionConfiguration = (Xpp3Dom) execution.getConfiguration(); executionConfiguration =
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.7K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java
ToolchainModel tm1 = new ToolchainModel(); tm1.setType("jdk"); tm1.addProvide("version", "1.5"); tm1.addProvide("vendor", "sun"); Xpp3Dom configuration1 = new Xpp3Dom("configuration"); Xpp3Dom jdkHome1 = new Xpp3Dom("jdkHome"); jdkHome1.setValue("${env.JAVA_HOME}"); configuration1.addChild(jdkHome1); tm1.setConfiguration(configuration1);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 12:33:57 GMT 2025 - 4.9K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/merge/MavenToolchainMergerTest.java
assertEquals(2, jdks.getToolchains().size()); Xpp3Dom config0 = (Xpp3Dom) jdks.getToolchains().get(0).getConfiguration(); assertEquals("lib/tools.jar", config0.getChild("toolsJar").getValue()); assertEquals(2, config0.getChildCount()); Xpp3Dom config1 = (Xpp3Dom) jdks.getToolchains().get(1).getConfiguration(); assertEquals(2, config1.getChildCount());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
if (configuration instanceof PlexusConfiguration plexusConfiguration) { plexusConfig = plexusConfiguration; } else if (configuration instanceof Xpp3Dom xpp3Dom) { plexusConfig = new XmlPlexusConfiguration(xpp3Dom); } else { throw new BeanConfigurationException("unsupported bean configuration source (" + configuration.getClass().getName() + ")"); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java
} jtc.addProvideToken(key, matcher); } // populate the configuration section Xpp3Dom dom = (Xpp3Dom) model.getConfiguration(); Xpp3Dom javahome = dom != null ? dom.getChild(JavaToolchainImpl.KEY_JAVAHOME) : null; if (javahome == null) { throw new MisconfiguredToolchainException(Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.1K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
Properties props = new Properties(); props.put("key", "${env.testKey}"); Xpp3Dom configurationChild = new Xpp3Dom("jdkHome"); configurationChild.setValue("${env.testKey}"); Xpp3Dom configuration = new Xpp3Dom("configuration"); configuration.addChild(configurationChild); ToolchainModel toolchain = new ToolchainModel();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 14K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
assertNotNull(result); assertNotNull(result.getEffectiveModel()); assertEquals("activated", result.getEffectiveModel().getProperties().get("profile.file")); Xpp3Dom conf = (Xpp3Dom) result.getEffectiveModel().getBuild().getPlugins().get(0).getConfiguration(); assertNotNull(conf); assertEquals("1.5", conf.getChild("source").getValue());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 3.7K bytes - Click Count (0)