- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for namespaceUri (0.05 sec)
-
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
// Fallback to namespace URI detection String namespaceUri = root.namespaceDeclaration(null); if (MAVEN_4_2_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_2_0; } else if (MAVEN_4_1_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_1_0; } else if (MAVEN_4_0_0_NAMESPACE.equals(namespaceUri)) { return MODEL_VERSION_4_0_0; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 9.5K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java
assertEquals("http://maven.apache.org/POM/4.0.0", node.namespaceUri()); assertEquals("m", node.prefix()); assertEquals("configuration", node.name()); assertEquals(1, node.children().size()); XmlNode myConfig = node.children().get(0); assertEquals("http://fabric8.io/fabric8-maven-plugin", myConfig.namespaceUri()); assertEquals("", myConfig.prefix());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4K bytes - Viewed (0) -
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) -
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) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<mime-type type="application/vnd.google-earth.kml+xml"> <root-XML localName="kml"/> <root-XML namespaceURI="http://www.opengis.net/kml/2.2" localName="kml"/> <root-XML namespaceURI="http://earth.google.com/kml/2.0" localName="kml"/> <root-XML namespaceURI="http://earth.google.com/kml/2.1" localName="kml"/> <root-XML namespaceURI="http://earth.google.com/kml/2.2" localName="kml"/> <acronym>KML</acronym>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (5)