- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 2,594 for project1 (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
import org.apache.maven.project.CycleDetectedException; import org.apache.maven.project.DuplicateProjectException; import org.apache.maven.project.MavenProject; import org.apache.maven.project.ProjectBuildingException; import org.apache.maven.project.collector.MultiModuleCollectionStrategy; import org.apache.maven.project.collector.PomlessCollectionStrategy; import org.apache.maven.project.collector.RequestPomCollectionStrategy;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 18.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanCreatorTest.java
Map<MavenProject, List<MavenProject>> projects = new HashMap<>(); projects.put(p1, Collections.emptyList()); projects.put(p2, Collections.singletonList(p1)); BuildPlan plan = calculateLifecycleMappings(projects, "verify"); plan.then(calculateLifecycleMappings(projects, "install")); Stream.of(p1, p2).forEach(project -> {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 7.9K bytes - Viewed (0) -
cmd/sts-handlers_test.go
"projecta", "projectb" ] } } } ] }` policyProjectsMap = map[string]string{ // grants access to bucket `projecta` if user is in group `projecta` "projecta": policyProjectA, // grants access to bucket `projectb` if user is in group `projectb`Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Oct 15 17:00:45 UTC 2025 - 103.4K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java
/** * Builds a project descriptor from the specified POM file. * * @param projectFile The POM file to build the project from, must not be {@code null}. * @param request The project building request that holds further parameters, must not be {@code null}. * @return The result of the project building, never {@code null}. * @throws ProjectBuildingException If the project descriptor could not be successfully built.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 5.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTestsPass.kt
* limitations under the License. */ package configurations import common.applyDefaultSettings import model.CIBuildModel import model.TestCoverage import projects.FunctionalTestProject class FunctionalTestsPass( model: CIBuildModel, functionalTestProject: FunctionalTestProject, ) : OsAwareBaseGradleBuildType(os = functionalTestProject.testCoverage.os, init = {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* is a prerequisite of the given project. * * @param project The project whose upstream projects should be retrieved, must not be {@code null}. * @param transitive A flag whether to retrieve all direct and indirect upstream projects or just the immediate * upstream projects.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
} return calculateLifecycleMappings(projects, lifecycle, resolvedPhase); } public BuildPlan calculateLifecycleMappings( Map<MavenProject, List<MavenProject>> projects, Lifecycle lifecycle, String lifecyclePhase) { BuildPlan plan = new BuildPlan(projects); for (MavenProject project : projects.keySet()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
ProjectBuildingRequest request = newBuildingRequest(); request.setLocalRepository(getLocalRepository()); request.setActiveProfileIds(List.of("profile1")); MavenProject project = projectBuilder.build(testPom, request).getProject(); String id = project.getGroupId() + ":" + project.getArtifactId() + ":" + project.getVersion();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 33.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
List<MavenProject> filtered = new ArrayList<>(projects.size()); for (MavenProject project : projects) { if (whiteList.containsKey(project)) { filtered.add(project); } else if (!transitive) { filtered.addAll(upstream ? getUpstreamProjects(project, false) : getDownstreamProjects(project, false)); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* build if those projects do not exist. */ public class ProjectActivation { /** * ProjectActivationSettings * @param selector the selector of a project, which can be the project directory, [groupId]:[artifactId] or :[artifactId] * @param activationSettings describes how/when to active or deactivate the project */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0)