- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 817 for projects (1.19 sec)
-
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-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java
<project xmlns="http://maven.apache.org/POM/4.0.0"> <modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>test</artifactId> <version>1.0.0</version> <name>Test Project</name> <url>https://example.com</url> </project> """;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 31.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/FileProfileActivatorTest.java
assertActivation(true, newExistsProfile("${project.rootDirectory}/" + "file.txt"), context); assertActivation(false, newMissingProfile("${project.rootDirectory}"), context); assertActivation(false, newMissingProfile("${project.rootDirectory}/" + "file.txt"), context); } @Test void testIsActiveNoFileWithShortBasedir() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java
* Registers the specified cache record for usage with the given project. Integrators can use the information * collected from this method in combination with a custom cache implementation to dispose unused records from the * cache. * * @param project The project that employs the plugin realm, must not be {@code null}. * @param record The cache record being used for the project, must not be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildStep.java
return Objects.equals(project, that.project) && Objects.equals(name, that.name); } @Override public int hashCode() { return Objects.hash(project, name); } @Override public String toString() { return "BuildStep[" + "project=" + project.getGroupId() + ":" + project.getArtifactId() + ", phase=" + name + ']';
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Apr 30 16:21:08 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java
private volatile int lastDependencyArtifactCount = -1; public DependencyContext( MavenProject project, Collection<String> scopesToCollect, Collection<String> scopesToResolve) { this.project = project; scopesToCollectForCurrentProject = scopesToCollect; scopesToResolveForCurrentProject = scopesToResolve;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
@Deprecated public class ActiveProjectArtifact implements Artifact { private final Artifact artifact; private final MavenProject project; public ActiveProjectArtifact(MavenProject project, Artifact artifact) { this.artifact = artifact; this.project = project; artifact.setFile(project.getArtifact().getFile()); artifact.setResolved(true); } /** {@inheritDoc} */ @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* } * Path outputDir = project.getOutputDirectory(scope()); * return configured.map(outputDir::resolve).orElse(outputDir); * }</pre> * * @param project the project to use for obtaining the output directory * @return the absolute path where files from {@link #directory()} should be copied * * @see #targetPath() * @see Project#getOutputDirectory(ProjectScope) */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 14.2K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml
<version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-profile</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${project.version}</version> </dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.4K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* Add official Microsoft project generator for [serving spaCy with FastAPI and Azure Cognitive Skills](https://github.com/microsoft/cookiecutter-spacy-fastapi) to [Project Generators](https://fastapi.tiangolo.com/project-generation/). PR [#1390](https://github.com/tiangolo/fastapi/pull/1390) by [@kabirkhan](https://github.com/kabirkhan).
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 19:06:15 UTC 2025 - 586.7K bytes - Viewed (0)