- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 2,855 for myproject (0.04 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategyTest.java
void shouldNotModifyPluginWhenVersionAlreadySufficient() throws Exception { String pomXml = """ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"> <modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>test</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilder.java
@Experimental public interface ProjectBuilder extends Service { /** * Creates a {@link org.apache.maven.api.Project} from a POM file. * * @param request {@link ProjectBuilderRequest} * @return the {@link ProjectBuilderResult} containing the built project and possible errors * @throws ProjectBuilderException if the project cannot be created * @throws IllegalArgumentException if an argument is {@code null} or invalid */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Nov 16 20:36:20 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* <li>In standard Maven project locations relative to the specified path</li> * </ul> * * @param project the path to search for a POM file * @return the path to the located POM file, or null if no POM can be found * @throws NullPointerException if project is null */ @Nullable Path locateExistingPom(@Nonnull Path project); } /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java
*/ class ResourceIncludeTest { private MavenProject project; @BeforeEach void setUp() { project = new MavenProject(); // Set a dummy pom file to establish the base directory project.setFile(new java.io.File("./pom.xml")); // Set build output directories project.getBuild().setOutputDirectory("target/classes");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java
*/ public BuildSuccess(MavenProject project, long time) { this(project, Duration.ofMillis(time)); } /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}. * @param time The build time of the project in milliseconds. */ public BuildSuccess(MavenProject project, Duration time) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java
super(message); this.project = project; } public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project) { super(message); this.project = project; } public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project, Throwable cause) { super(message, cause);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 3.5K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java
MavenProject project = mock(MavenProject.class); when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow"); when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin"); when(project.getPackaging()).thenReturn("maven-plugin"); when(project.getName()).thenReturn("Apache Maven Project Info Reports Plugin");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Dec 01 19:41:22 UTC 2024 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/test/resources/mavenHome/conf/maven-system.properties
${includes} = ?"${maven.user.conf}/maven-system.properties", \ ?"${maven.project.conf}/maven-system.properties" # # Settings # # Define the default three levels for settings. # The '-is' flag will override the 'maven.installation.settings' property. # The '-ps' flag will override the 'maven.project.settings' property. # The '-s' flag will override the 'maven.user.settings' property.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
import java.util.Set; import java.util.stream.Collectors; import org.apache.maven.execution.ProjectDependencyGraph; import org.apache.maven.project.CycleDetectedException; import org.apache.maven.project.DuplicateProjectException; import org.apache.maven.project.MavenProject; import org.apache.maven.project.ProjectSorter; /** * Describes the interdependencies between projects in the reactor. * */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java
* @param project project reference. * @param artifactType artifact type. * @param artifactFile artifact file. */ void attachArtifact(MavenProject project, String artifactType, File artifactFile); /** * Add or replace an artifact to the current project. * @param project the project reference. * @param artifactType the type (e.g. jar) or null.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0)