- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for detachedConfiguration (0.15 seconds)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTaskWithKotlin.java
DependencyHandler dependencies = project.getDependencies(); VersionCatalog libs = project.getExtensions().getByType(VersionCatalogsExtension.class).named("libs"); return project.getConfigurations().detachedConfiguration( dependencies.create(libs.findLibrary("kotlinCompilerEmbeddable").get().get()) ); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 2.4K bytes - Click Count (0) -
okhttp/build.gradle.kts
// Add alpn-boot on Java 8 so we can use HTTP/2 without a stable API. val alpnBootVersion = alpnBootVersion if (alpnBootVersion != null) { val alpnBootJar = configurations .detachedConfiguration( dependencies.create("org.mortbay.jetty.alpn:alpn-boot:$alpnBootVersion"), ).singleFile tasks.withType<Test> { jvmArgs("-Xbootclasspath/p:$alpnBootJar") } } }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 11.4K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.fips.gradle
copy javaSecurityFilename copy 'fips_java.policy' copy 'cacerts.bcfks' } project.afterEvaluate { def extraFipsJars = configurations.detachedConfiguration(bcFips, bcTlsFips) // ensure that bouncycastle is on classpath for the all of test types, must happen in evaluateAfter since the rest tests explicitlyCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Sep 21 11:03:02 GMT 2021 - 4.8K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt
private val additionalClasspath = project.objects.fileCollection().apply { val libs = project.the<VersionCatalogsExtension>().named("libs") from( project.configurations.detachedConfiguration( project.dependencies.create(libs.findLibrary("kotlinCompilerEmbeddable").get().get()) ) ) } @get:InputFile @get:PathSensitive(PathSensitivity.RELATIVE)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 2.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
val libDependencies = arrayOf(project.dependencies.create(notation)) @Suppress("SpreadOperator") val templateVersionConfiguration = project.configurations.detachedConfiguration(*libDependencies) templateVersionConfiguration.resolutionStrategy.componentSelection.all { devSuffixes.forEach { if (it.containsMatchIn(candidate.version)) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Nov 24 20:45:41 GMT 2025 - 5K bytes - Click Count (0)