- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 43 for POMs (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
private int totalPoms = 0; public static void main(String[] args) throws Exception { if (args.length < 1) { System.out.println("Usage: PomMemoryAnalyzer <directory-with-poms>"); System.exit(1); } Path rootDir = Paths.get(args[0]); PomMemoryAnalyzer analyzer = new PomMemoryAnalyzer(); MavenStaxReader reader = new MavenStaxReader();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/collector/ProjectsSelector.java
* @param files List of POM files. * @param request The {@link MavenExecutionRequest} * @return A list of projects that have been found in the specified POM files. * @throws ProjectBuildingException In case the POMs are not used. */ List<MavenProject> selectProjects(List<File> files, MavenExecutionRequest request) throws ProjectBuildingException;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
*/ @Deprecated(since = "4.0.0") public interface ModelBuildingRequest { /** * Denotes minimal validation of POMs. This validation level is meant for processing of POMs from repositories * during metadata retrieval. */ int VALIDATION_LEVEL_MINIMAL = 0; /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 12.8K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnup/UpgradeOptions.java
* * @return an {@link Optional} containing the boolean value {@code true} if specified, or empty */ @Nonnull Optional<Boolean> infer(); /** * Should fix Maven 4 compatibility issues in POMs. * This includes fixing unsupported combine attributes, duplicate dependencies, * unsupported expressions, and other Maven 4 validation issues. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:46:51 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java
import org.apache.maven.settings.Proxy; import org.apache.maven.settings.Server; /** * A resolution request allows you to either use an existing MavenProject, or a coordinate (gid:aid:version) * to process a POMs dependencies. * */ @Deprecated public class ArtifactResolutionRequest implements RepositoryRequest { private static final String LS = System.lineSeparator(); private Artifact artifact;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
import org.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Builds consumer POMs from project models, transforming them into a format suitable for downstream consumers. * <p> * A consumer POM is a simplified version of a project's POM that is published for consumption by other projects.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 27 07:40:26 GMT 2025 - 21.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformer.java
@Override public InstallRequest remapInstallArtifacts(RepositorySystemSession session, InstallRequest request) { if (consumerPomPresent(request.getArtifacts())) { // For install, we always include build POMs as they may be needed locally request.setArtifacts(replacePom(request.getArtifacts(), true)); } return request; } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 06 18:32:25 GMT 2025 - 8.9K bytes - Click Count (0) -
impl/maven-core/plugin-manager.txt
* they could be resolved from a local repository - I think we need a simple dependency model here * that is more mercury related and not Maven related i.e. no POMs - workspace resolver - we need * tools to pre-populate this repository * * h3. create an isolated classloader * * h3. lookup the plugin with a configuration * * h3. execute the plugin *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 22 11:03:29 GMT 2025 - 12.3K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeWorkflowIntegrationTest.java
int result = applyGoal.execute(context); // Verify success assertEquals(0, result, "Apply should succeed for multi-module project"); // Verify both POMs exist (they may or may not be modified depending on strategies) assertTrue(Files.exists(parentPom), "Parent POM should exist"); assertTrue(Files.exists(modulePom), "Module POM should exist"); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 9.3K bytes - Click Count (0) -
impl/maven-core/src/site/apt/configuration-management.apt
maven 1.x and 2.x is that all project parameterization occurs in the POM and not from properties files. For many of the more advanced features in Maven2 it is critical that POMs be available in the local repository. Features like transitive dependencies and the new parent specification mechanism. The problem we run into is
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.8K bytes - Click Count (0)