- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 2,594 for project2 (0.04 sec)
-
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/test/java/org/apache/maven/plugin/PluginManagerTest.java
} // test a build where projects use different versions of the same plugin @Test void testThatPluginDependencyThatHasSystemScopeIsResolved() throws Exception { MavenSession session = createMavenSession(getProject("project-contributing-system-scope-plugin-dep")); MavenProject project = session.getCurrentProject(); Plugin plugin = project.getPlugin("org.apache.maven.its.plugins:maven-it-plugin");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8.3K 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-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
@Nonnull public Map<String, String> getProperties(@Nonnull Project project) { return Collections.unmodifiableMap( new PropertiesAsMap(getMavenProject(project).getProperties())); } @Override @Nonnull public Optional<Project> getExecutionProject(@Nonnull Project project) { // Session keep tracks of the Project per project id,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0) -
mockwebserver-junit5/build.gradle.kts
plugins { kotlin("jvm") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } project.applyJavaModules("mockwebserver3.junit5") tasks { test { useJUnitPlatform() } } dependencies { api(projects.okhttp) api(projects.mockwebserver3) api(libs.junit.jupiter.api) compileOnly(libs.animalsniffer.annotations) testRuntimeOnly(libs.junit.jupiter.engine)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 728 bytes - Viewed (0) -
okhttp-zstd/build.gradle.kts
id("binary-compatibility-validator") } project.applyOsgi( "Export-Package: okhttp3.zstd", "Automatic-Module-Name: okhttp3.zstd", "Bundle-SymbolicName: com.squareup.okhttp3.zstd" ) dependencies { "friendsApi"(projects.okhttp) implementation(libs.zstd.kmp.okio) testImplementation(projects.okhttpBrotli) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.kotlin.test.common)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 18:34:32 UTC 2025 - 766 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java
/** * Add a resource directory to the project. * @param project project reference. * @param resourceDirectory directory. * @param includes include patterns. * @param excludes exclude patterns. */ void addResource(MavenProject project, String resourceDirectory, List<String> includes, List<String> excludes);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
* build process of a local project. Hence, the effective model will support the notion of a project directory. To * build the model for a POM from the repository, use {@link #setModelSource(ModelSource)} in combination with a * {@link FileModelSource} instead. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 12.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
fun stageTriggerId( model: CIBuildModel, stageName: StageName, os: Os? = null, ) = "${model.projectId}_Stage_${stageName.id}_${osSuffix(os)}Trigger" fun stageTriggerUuid( model: CIBuildModel, stageName: StageName, os: Os? = null, ) = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stageName.uuid}_${osSuffix(os)}Trigger" fun osSuffix(os: Os?) = os?.asName()?.plus("_") ?: ""
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 12:17:39 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultMavenExecutionTest.java
result.setTopologicallySortedProjects(null); List<MavenProject> projects = result.getTopologicallySortedProjects(); assertNotNull(projects); assertTrue( projects.isEmpty(), "Expected collection to be empty but had " + projects.size() + " elements: " + projects); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.9K bytes - Viewed (0)