- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 222 for Projekts (0.06 sec)
-
okhttp-brotli/build.gradle.kts
project.applyOsgi( "Export-Package: okhttp3.brotli", "Bundle-SymbolicName: com.squareup.okhttp3.brotli" ) project.applyJavaModules("okhttp3.brotli") dependencies { "friendsApi"(projects.okhttp) api(libs.brotli.dec) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.conscrypt.openjdk) testImplementation(libs.junit) testImplementation(libs.kotlin.test.common) testImplementation(libs.kotlin.test.junit)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 793 bytes - Viewed (0) -
mockwebserver/build.gradle.kts
id("binary-compatibility-validator") } project.applyJavaModules("mockwebserver3") dependencies { "friendsApi"(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.okhttpTls) testImplementation(projects.mockwebserver3Junit5) testImplementation(libs.junit) testImplementation(libs.kotlin.test.common) testImplementation(libs.kotlin.test.junit)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 790 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java
*/ public class BuildResumptionData { /** * The list of projects that remain to be built. */ private final List<String> remainingProjects; public BuildResumptionData(final List<String> remainingProjects) { this.remainingProjects = remainingProjects; } /** * Returns the projects that still need to be built when resuming.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/dag.txt
quarkus/independent-projects/resteasy-reactive/client/processor/pom.xml quarkus/independent-projects/resteasy-reactive/client/runtime/pom.xml quarkus/independent-projects/resteasy-reactive/common/processor/pom.xml quarkus/independent-projects/resteasy-reactive/server/jackson/pom.xml quarkus/independent-projects/resteasy-reactive/server/runtime/pom.xml quarkus/independent-projects/resteasy-reactive/server/processor/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 224K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* instances.</p> * * <p><dfn>Project aggregation</dfn> allows building several projects together. This is only * for projects that are built, hence available on the file system. One project, * called the <dfn>aggregator project</dfn> lists one or more <dfn>sub-projects</dfn> * which are relative pointers on the file system to other projects. This is done using
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:13:42 UTC 2025 - 7.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java
List<ProjectBuildingResult> results = projectBuilder.build(files, isRecursive, projectBuildingRequest); List<MavenProject> projects = new ArrayList<>(results.size()); long totalProblemsCount = 0; for (ProjectBuildingResult result : results) { projects.add(result.getProject()); int problemsCount = result.getProblems().size(); totalProblemsCount += problemsCount;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 30 08:09:09 UTC 2025 - 4.1K bytes - Viewed (0) -
container-tests/build.gradle.kts
javaLauncher.set(javaToolchains.launcherFor { languageVersion.set(JavaLanguageVersion.of(testJavaVersion)) }) } dependencies { api(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.junit.jupiter.api) testImplementation(libs.junit.jupiter.params) testImplementation(libs.junit.jupiter.engine) testImplementation(libs.assertk)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Mar 17 14:46:34 UTC 2024 - 1.1K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java
result.add(dependentProject); } } // Sort newly schedulable projects by critical path priority result.sort(projectComparator.getComparator()); return result; } /** * @return set of projects that have yet to be processed successfully by the build. */ public Set<MavenProject> getUnfinishedProjects() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.9K bytes - Viewed (0) -
okhttp-testing-support/build.gradle.kts
import org.gradle.internal.os.OperatingSystem plugins { kotlin("jvm") id("ru.vyarus.animalsniffer") } dependencies { api(libs.squareup.okio) api(projects.mockwebserver3) "friendsApi"(projects.okhttp) api(projects.okhttpTls) api(libs.assertk) api(libs.bouncycastle.bcprov) implementation(libs.bouncycastle.bcpkix) implementation(libs.bouncycastle.bctls) api(libs.conscrypt.openjdk) api(libs.openjsse)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 18:33:48 UTC 2025 - 1.2K bytes - Viewed (1) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* from any repository but are present among the set of specified projects will not cause an exception. Instead, * those unresolved artifacts will be returned in the result set, allowing the caller to take special care of * artifacts that haven't been build yet. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0)