- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for childText (0.05 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
// Get parent GAV String parentGroupId = parentElement.childText(MavenPomElements.Elements.GROUP_ID); String parentVersion = parentElement.childText(MavenPomElements.Elements.VERSION); // Get child GAV String childGroupId = root.childText(MavenPomElements.Elements.GROUP_ID); String childVersion = root.childText(MavenPomElements.Elements.VERSION);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
private String createDependencyKey(Element dependency) { String groupId = dependency.childText(MavenPomElements.Elements.GROUP_ID); String artifactId = dependency.childText(MavenPomElements.Elements.ARTIFACT_ID); String type = dependency.childText(MavenPomElements.Elements.TYPE); String classifier = dependency.childText(MavenPomElements.Elements.CLASSIFIER);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 22.2K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java
// Test getting text from existing elements assertEquals("4.0.0", root.childText("modelVersion"), "Should get modelVersion text"); assertEquals("test", root.childText("groupId"), "Should get groupId text"); assertEquals("Test Project", root.childText("name"), "Should get name text"); assertEquals("", root.childText("description"), "Should get empty description text");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 31.3K bytes - Click Count (0)