Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Xpp3Dom (0.03 sec)

  1. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    void removeChild(int); public Xpp3Dom getParent(); public void setParent(Xpp3Dom); public void writeToSerializer(String, pull.XmlSerializer) throws java.io.IOException; private static void mergeIntoXpp3Dom(Xpp3Dom, Xpp3Dom, Boolean); public static Xpp3Dom mergeXpp3Dom(Xpp3Dom, Xpp3Dom, Boolean); public static Xpp3Dom mergeXpp3Dom(Xpp3Dom, Xpp3Dom); public boolean equals(Object); public int hashCode(); public String toString(); public String toUnescapedString(); static void <clinit>(); } org/code...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. 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);
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. 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).
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 14:10:21 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. 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();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 14K bytes
    - Viewed (0)
  5. 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());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. 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;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

    import org.apache.commons.jxpath.ri.model.NodeIterator;
    import org.apache.commons.jxpath.ri.model.NodePointer;
    import org.apache.maven.api.xml.XmlNode;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    
    /**
     * A node iterator for JXPath to support <code>Xpp3Dom</code>.
     *
     */
    class Xpp3DomNodeIterator implements NodeIterator {
    
        private NodePointer parent;
    
        private NodeTest test;
    
        private XmlNode node;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.impl.DefaultNode;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.eclipse.aether.graph.DependencyNode;
    
    public class DefaultMojoExecution implements MojoExecution {
        private final InternalMavenSession session;
        private final org.apache.maven.plugin.MojoExecution delegate;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.Parameter;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static java.util.Arrays.stream;
    import static java.util.Objects.requireNonNull;
    
    /**
     * @since 3.3.1, MNG-5753
     */
    @Named
    @Singleton
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. 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() + ")");
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top