- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 1,859 for projects (0.06 sec)
-
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) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java
import org.apache.maven.lifecycle.internal.TaskSegment; /** * <p> * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects. * </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
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) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>(); if (pom != null) { MavenProject project = projectBuilder.build(pom, configuration).getProject(); projects.add(project); if (includeModules) { for (String module : project.getModules()) { File modulePom = new File(pom.getParentFile(), module);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 12.1K 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) -
mockwebserver-deprecated/build.gradle.kts
id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } project.applyJavaModules("okhttp3.mockwebserver") dependencies { "friendsApi"(projects.okhttp) api(projects.mockwebserver3) api(libs.junit) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.okhttpTls) 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 - 643 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder.java
import org.apache.maven.lifecycle.internal.builder.Builder; /** * <p> * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects. */ @Named("singlethreaded") @Singleton public class SingleThreadedBuilder implements Builder {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.9K bytes - Viewed (0) -
mockwebserver/build.gradle.kts
id("com.vanniktech.maven.publish.base") 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)
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-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/package-info.java
* upgrade Maven projects to be compatible with Maven 4. The tool is organized around * a goal-based architecture with pluggable upgrade strategies.</p> * * <h2>Architecture Overview</h2> * * <h3>Goals</h3> * <ul> * <li>{@link org.apache.maven.cling.invoker.mvnup.goals.Check} - Analyzes projects and reports needed upgrades</li>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 3.3K 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)