- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 218 for Projekts (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/collector/ProjectsSelector.java
import org.apache.maven.project.ProjectBuildingException; /** * Facade to select projects for a given set of pom.xml files. */ public interface ProjectsSelector { /** * Select Maven projects from a list of POM files. * @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.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
// // 6) Get reactor projects looking for general POM errors // // 7) Create ProjectDependencyGraph using trimming which takes into account --projects and reactor mode. // This ensures that the projects passed into the ReactorReader are only those specified. // // 8) Create ReactorReader with the getProjectMap( projects ). NOTE that getProjectMap(projects) is the code thatRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 05 16:58:52 UTC 2025 - 28.7K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
/** * Smart project comparator that orders projects based on critical path analysis. * Projects with longer downstream dependency chains are prioritized to maximize * parallel execution efficiency. * * <p>The algorithm calculates a weight for each project as: * weight = 1 + max(downstream_project_weights) * * <p>Projects are then sorted by weight in descending order, ensuring that
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 12:03:40 UTC 2025 - 4.6K bytes - Viewed (0) -
okhttp-coroutines/build.gradle.kts
project.applyJavaModules("okhttp3.coroutines") dependencies { api(projects.okhttp) implementation(libs.kotlinx.coroutines.core) api(libs.squareup.okio) api(libs.kotlin.stdlib) testImplementation(libs.kotlin.test.annotations) testImplementation(libs.kotlin.test.common) testImplementation(libs.kotlin.test.junit) testApi(libs.assertk) testImplementation(projects.okhttpTestingSupport)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 937 bytes - Viewed (0) -
samples/static-server/build.gradle.kts
} tasks.compileJava { options.isWarnings = false } tasks.jar { manifest { attributes("Main-Class" to "okhttp3.sample.SampleServer") } } dependencies { implementation(projects.okhttp) implementation(projects.mockwebserver) } tasks.shadowJar { mergeServiceFiles()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat May 17 05:15:23 UTC 2025 - 338 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java
} @Override public Set<Artifact> resolve( Collection<? extends MavenProject> projects, Collection<String> scopesToResolve, MavenSession session) throws ArtifactResolutionException, ArtifactNotFoundException { return resolveImpl(projects, null, scopesToResolve, session, getIgnorableArtifacts(projects)); } @Override public Set<Artifact> resolve( MavenProject project,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.4K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java
private final Map<String, MavenProject> projects; private final Map<String, Integer> indices; public ProjectIndex(List<MavenProject> projects) { this.projects = new HashMap<>(projects.size() * 2); this.indices = new HashMap<>(projects.size() * 2); for (int i = 0; i < projects.size(); i++) { MavenProject project = projects.get(i);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java
* @param collisions The POM files of the projects that collided, indexed by their g:a:v, may be {@code null}. */ public DuplicateProjectException(String message, Map<String, List<File>> collisions) { super(message, (File) null); this.collisions = (collisions != null) ? collisions : new LinkedHashMap<>(); } /** * Gets the POM files of the projects that collided. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
samples/tlssurvey/build.gradle.kts
plugins { kotlin("jvm") application id("com.google.devtools.ksp") } application { mainClass.set("okhttp3.survey.RunSurveyKt") } dependencies { implementation(projects.okhttp) implementation(projects.okhttpCoroutines) implementation(libs.conscrypt.openjdk) implementation(libs.retrofit) implementation(libs.converter.moshi) implementation(libs.squareup.moshi) implementation(libs.squareup.moshi.kotlin)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat May 17 05:15:32 UTC 2025 - 518 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java
for (TaskSegment taskSegment : taskSegments) { List<MavenProject> projects; if (taskSegment.isAggregating()) { projects = Collections.singletonList(rootProject); } else { projects = session.getProjects(); } for (MavenProject project : projects) { ClassLoader tccl = Thread.currentThread().getContextClassLoader();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0)