Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 17 for Xpp3Dom (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  3. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  4. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 11 12:33:57 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  5. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 6K bytes
    - Click Count (0)
  6. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomPointerFactory.java

    /**
     * A node pointer factory for JXPath to support <code>Xpp3Dom</code>.
     *
     */
    public class Xpp3DomPointerFactory implements NodePointerFactory {
    
        @Override
        public int getOrder() {
            return 200;
        }
    
        @Override
        public NodePointer createNodePointer(QName name, Object object, Locale locale) {
            if (object instanceof org.codehaus.plexus.util.xml.Xpp3Dom xpp3Dom) {
                object = xpp3Dom.getDom();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2K bytes
    - Click Count (0)
  8. impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

            configurator = new DefaultBeanConfigurator();
        }
    
        @AfterEach
        void tearDown() throws Exception {
            configurator = null;
        }
    
        private Xpp3Dom toConfig(String xml) {
            try {
                return new Xpp3Dom(XmlService.read(new StringReader("<configuration>" + xml + "</configuration>")));
            } catch (XMLStreamException e) {
                throw new IllegalArgumentException(e);
            }
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  9. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/package-info.java

     * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/Xpp3DomBuilder.html">Xpp3DomBuilder</a> +
     * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/Xpp3Dom.html">Xpp3Dom</a> for
     * DOM content representation (see <code>&lt;configuration&gt;</code> elements).
     */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 14:10:21 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

        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) {
            this.configuration = configuration != null ? new org.codehaus.plexus.util.xml.Xpp3Dom(configuration) : null;
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 6.2K bytes
    - Click Count (0)
Back to Top