- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 56 for POMs (0.01 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResultTest.java
assertEquals(0, result.processedCount(), "Empty result should have no processed POMs"); assertEquals(0, result.modifiedCount(), "Empty result should have no modified POMs"); assertEquals(0, result.unmodifiedCount(), "Empty result should have no unmodified POMs"); assertEquals(0, result.errorCount(), "Empty result should have no errors"); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 9.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
context.indent(); context.info("Processed: " + result.processedPoms().size() + " POMs"); context.info("Modified: " + result.modifiedPoms().size() + " POMs"); context.failure("Errors: " + result.errorPoms().size() + " POMs"); context.unindent(); } else if (!result.modifiedPoms().isEmpty()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResult.java
/** * Result of an upgrade strategy application. * Uses sets of paths to track which POMs were processed, modified, or had errors, * avoiding double-counting when multiple strategies affect the same POMs. * * @param processedPoms the set of POMs that were processed * @param modifiedPoms the set of POMs that were modified * @param errorPoms the set of POMs that had errors */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
writer = new DefaultModelWriter(); assembler = new DefaultInheritanceAssembler(); } private File getPom(String name) { return new File("src/test/resources/poms/inheritance/" + name + ".xml"); } private Model getModel(String name) throws IOException { return reader.read(getPom(name), null); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 8.2K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java
assertEquals(0, result.processedPoms().size(), "Should have no processed POMs"); assertEquals(0, result.modifiedPoms().size(), "Should have no modified POMs"); assertEquals(0, result.errorPoms().size(), "Should have no error POMs"); } @Test @DisplayName("should handle overlapping POM modifications")
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.3K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
with the current POM. NOTE: This list will contain entries for repositories specified by ancestor POMs, including the default built-in super-POM, which is the parent of all POMs. ]]></description> </expression> <expression> <syntax>project.pluginArtifactRepositories</syntax> <configuration> <![CDATA[ <pluginRepositories>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingExceptionTest.java
String message = exception.getMessage(); assertTrue( message.contains("3 problems were encountered while processing the POMs (2 errors)"), "Message should contain problem count and error count"); assertTrue(message.contains("[com.example:project1:1.0]"), "Message should contain project1 identifier");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jul 26 19:15:57 UTC 2025 - 6.7K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java
@Measurement(time = 10) public class Xpp3DomPerfTest { @State(Scope.Benchmark) public static class AdditionState { List<Path> poms; @Setup(Level.Iteration) public void setUp() throws IOException { Path userHome = Paths.get(System.getProperty("user.home")); poms = Files.walk(userHome.resolve(".m2/repository/org/apache/maven")) .filter(p -> p.getFileName().toString().endsWith(".pom"))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 3.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* Subclasses only differ in whether they save modifications to disk. * * <h2>Supported Upgrades</h2> * * <h3>Model Version Upgrades</h3> * <ul> * <li><strong>4.0.0 → 4.1.0</strong>: Upgrades Maven 3.x POMs to Maven 4.1.0 format</li> * </ul> * * <h3>4.0.0 → 4.1.0 Upgrade Process</h3> * <ol> * <li><strong>Namespace Update</strong>: Changes namespace from Maven 4.0.0 to 4.1.0 for all elements</li>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PomDiscovery.java
return new Parser().parse(content); } /** * Recursively discovers module POMs from the given parent POM. * * @param baseDirectory the base directory for resolving module paths * @param parentPom the parent POM document * @param pomMap the map to store discovered POMs * @throws IOException if there's an error reading files * @throws DomTripException if there's an error parsing XML
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 4.8K bytes - Viewed (0)