Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for namespaceUri (0.05 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

            }
    
            /**
             * Sets the namespace URI of the XML node.
             *
             * @param namespaceUri the namespace URI of the XML node
             * @return this builder instance
             */
            public Builder namespaceUri(String namespaceUri) {
                this.namespaceUri = namespaceUri;
                return this;
            }
    
            /**
             * Sets the namespace prefix of the XML node.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 17 15:20:44 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java

                assertEquals(expectedNamespaceUri, root.namespaceURI());
    
                // Verify child elements namespace updated recursively
                Element dependencies = DomUtils.findChildElement(root, "dependencies");
                assertNotNull(dependencies);
                assertEquals(expectedNamespaceUri, dependencies.namespaceURI());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 38.8K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java

                Document document = Document.of(pomXml);
                Element root = document.root();
    
                assertEquals(namespace, root.namespaceURI(), "POM should preserve the specified namespace");
            }
    
            @Test
            @DisplayName("should handle custom modelVersion values")
            void shouldHandleCustomModelVersionValues() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                synchronized (this) {
                    if (pluginDescriptorV4 == null) {
                        pluginDescriptorV4 = org.apache.maven.api.plugin.descriptor.PluginDescriptor.newBuilder()
                                .namespaceUri(null)
                                .modelEncoding(null)
                                .name(name)
                                .description(description)
                                .groupId(groupId)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top