Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Xpp3Dom (0.25 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            server.setPassword("abc123");
            Xpp3Dom httpConfiguration = new Xpp3Dom("httpConfiguration");
            Xpp3Dom httpHeaders = new Xpp3Dom("httpHeaders");
            Xpp3Dom property = new Xpp3Dom("property");
            Xpp3Dom headerName = new Xpp3Dom("name");
            headerName.setValue("header");
            Xpp3Dom headerValue = new Xpp3Dom("value");
            headerValue.setValue("value");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  2. 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(XmlNodeStaxBuilder.build(
                        new StringReader("<configuration>" + xml + "</configuration>"),
                        (XmlNodeStaxBuilder.InputLocationBuilderStax) null));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-api-impl/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...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorPathTest.java

            configurator = new DefaultBeanConfigurator();
        }
    
        @AfterEach
        void tearDown() throws Exception {
            configurator = null;
        }
    
        private Xpp3Dom toConfig(String xml) {
            try {
                return new Xpp3Dom(XmlNodeStaxBuilder.build(
                        new StringReader("<configuration>" + xml + "</configuration>"),
                        (XmlNodeStaxBuilder.InputLocationBuilderStax) null));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        dom = (Xpp3Dom) plugin.getConfiguration();
    
                        if (reportSetId != null) {
                            ReportSet reportSet = plugin.getReportSetsAsMap().get(reportSetId);
                            if (reportSet != null) {
                                Xpp3Dom executionConfiguration = (Xpp3Dom) reportSet.getConfiguration();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    import org.apache.maven.api.xml.XmlNode;
    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;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top