- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 36 for projects (0.14 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
if (projects != null) { Map<String, Map<String, Map<String, MavenProject>>> map = new HashMap<>(); projects.forEach(project -> map.computeIfAbsent(project.getGroupId(), k -> new HashMap<>()) .computeIfAbsent(project.getArtifactId(), k -> new HashMap<>()) .put(project.getVersion(), project)); this.projects = map; } else {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:20:38 GMT 2025 - 24.4K bytes - Click Count (0) -
build-logic/integration-testing/build.gradle.kts
} } } dependencies { implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation(projects.cleanup) implementation(projects.dependencyModules) implementation(projects.jvm) testImplementation("junit:junit")Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 27 06:24:17 GMT 2025 - 930 bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* the {@code /project/subprojects/subproject} elements of the POM in the aggregator project. * Note that the aggregator project is required to have a {@code pom} packaging.</p> * * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects. * The <dfn>child project</dfn> inherits all the information from the <dfn>parent project</dfn> * POM.</p> * */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:13:42 GMT 2025 - 7.7K 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/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java
import org.apache.maven.model.building.Result; import org.apache.maven.project.MavenProject; import org.apache.maven.project.ProjectBuilder; import org.apache.maven.project.ProjectBuildingException; import org.apache.maven.project.ProjectBuildingRequest; import org.apache.maven.project.ProjectBuildingResult; import org.apache.maven.project.collector.DefaultProjectsSelector; import org.apache.maven.project.collector.MultiModuleCollectionStrategy;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 09 20:39:03 GMT 2025 - 28K bytes - Click Count (0) -
.idea/gradle.xml
<project path="$PROJECT_DIR$/build-logic/binary-compatibility" /> <project path="$PROJECT_DIR$/build-logic/build-init-samples" /> <project path="$PROJECT_DIR$/build-logic/build-update-utils" /> <project path="$PROJECT_DIR$/build-logic/buildquality" /> <project path="$PROJECT_DIR$/build-logic/cleanup" />Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 11 18:02:10 GMT 2025 - 23.2K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/model/ModelBuilderTest.java
import org.apache.maven.impl.cache.DefaultRequestCacheFactory; import org.apache.maven.internal.impl.DefaultSession; import org.apache.maven.project.DefaultProjectBuildingRequest; import org.apache.maven.project.ProjectBuilder; import org.apache.maven.project.ProjectBuildingResult; import org.apache.maven.resolver.RepositorySystemSessionFactory; import org.codehaus.plexus.testing.PlexusTest;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 4.1K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
$ cd code // Create a directory for this project $ mkdir awesome-project // Enter into that project directory $ cd awesome-project ``` </div> ## Create a Virtual Environment { #create-a-virtual-environment } When you start working on a Python project **for the first time**, create a virtual environment **<abbr title="there are other options, this is a simple guideline">inside your project</abbr>**. /// tipCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 02 05:09:25 GMT 2025 - 22.8K bytes - Click Count (0) -
docs/en/docs/external-links.md
# External Links **FastAPI** has a great community constantly growing. There are many posts, articles, tools, and projects, related to **FastAPI**. You could easily use a search engine or video platform to find many resources related to FastAPI. /// info Before, this page used to list links to external articles.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 12:28:40 GMT 2025 - 917 bytes - Click Count (0) -
docs/en/docs/tutorial/bigger-applications.md
It contains an `APIRouter` with some admin *path operations* that your organization shares between several projects. For this example it will be super simple. But let's say that because it is shared with other projects in the organization, we cannot modify it and add a `prefix`, `dependencies`, `tags`, etc. directly to the `APIRouter`:
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 08:55:32 GMT 2025 - 18.6K bytes - Click Count (0)