- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 621 for DEPENDENCIES (0.43 sec)
-
compat/maven-model-builder/src/test/resources/poms/validation/bad-import-scope-classifier.xml
<groupId>gid</groupId> <version>0.1</version> <dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>0.1</version> <scope>import</scope> <type>pom</type> <classifier>cls</classifier> </dependency> </dependencies> </dependencyManagement>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java
ArtifactFactory artifactFactory, List<Dependency> dependencies, String inheritedScope, ArtifactFilter dependencyFilter, MavenProject project) throws InvalidDependencyVersionException { Set<Artifact> artifacts = new LinkedHashSet<>(); for (Dependency d : dependencies) { Artifact dependencyArtifact; try {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 6.2K bytes - Viewed (0) -
okhttp-dnsoverhttps/build.gradle.kts
} project.applyOsgi( "Export-Package: okhttp3.dnsoverhttps", "Bundle-SymbolicName: com.squareup.okhttp3.dnsoverhttps" ) project.applyJavaModules("okhttp3.dnsoverhttps") dependencies { "friendsApi"(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.mockwebserver) testImplementation(projects.mockwebserver3Junit5)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 906 bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
* resolving plugin dependencies and executing plugin goals that participate in project building. * * @return true if plugins should be processed, false otherwise */ boolean isProcessPlugins(); /** * Gets the list of remote repositories to use for resolving dependencies during project building.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 11.7K bytes - Viewed (0) -
okhttp-hpacktests/build.gradle.kts
plugins { kotlin("jvm") } dependencies { testImplementation(libs.squareup.okio) testImplementation(libs.squareup.moshi) testImplementation(libs.squareup.moshi.kotlin) testImplementation(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.mockwebserver) testImplementation(libs.junit)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 346 bytes - Viewed (0) -
samples/crawler/build.gradle.kts
plugins { kotlin("jvm") application } application { mainClass.set("okhttp3.sample.Crawler") } dependencies { implementation(projects.okhttp) implementation(libs.jsoup) } tasks.compileJava { options.isWarnings = falseRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 15 23:38:32 UTC 2022 - 234 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-plugin-dependency-version.xml
<groupId>gid</groupId> <version>0.1</version> <build> <plugins> <plugin> <artifactId>maven-it-plugin</artifactId> <version>1.0</version> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>0.1</version> </dependency> <dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/test/remote-repo/org/apache/maven/its/b/0.1/b-0.1.pom
<id>maven-core-it</id> <url>file:///${basedir}/repo</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.apache.maven.its</groupId> <artifactId>a</artifactId> <version>0.1</version> </dependency> </dependencies>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
tests/test_security_oauth2_authorization_code_bearer_scopes_openapi_simple.py
scopes={"read": "Read access", "write": "Write access"}, ) async def get_token(token: Annotated[str, Depends(oauth2_scheme)]) -> str: return token app = FastAPI(dependencies=[Depends(get_token)]) @app.get("/admin", dependencies=[Security(get_token, scopes=["read", "write"])]) async def read_admin(): return {"message": "Admin Access"} client = TestClient(app) def test_read_admin():Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 2.6K bytes - Viewed (0) -
samples/static-server/build.gradle.kts
kotlin("jvm") id("com.gradleup.shadow") } 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)