1
0
mirror of synced 2025-12-19 18:14:56 -05:00

gradle: fix annoying ksp error, bump CDK dependencies (#44473)

This commit is contained in:
Marius Posta
2024-08-20 13:53:54 -07:00
committed by GitHub
parent ec0c2fb190
commit 8f43ca6954
3 changed files with 22 additions and 18 deletions

View File

@@ -6,9 +6,9 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
plugins {
id 'base'
id 'com.github.spotbugs' version '6.0.7' apply false
id 'org.jetbrains.kotlin.jvm' version '2.0.0' apply false
id 'com.google.devtools.ksp' version '2.0.0-1.0.24' apply false
id 'com.github.spotbugs' version '6.0.7'
id 'org.jetbrains.kotlin.jvm' version '2.0.0'
id 'com.google.devtools.ksp' version '2.0.0-1.0.24'
}
allprojects {
@@ -106,6 +106,12 @@ allprojects {
}
}
configurations.all {
resolutionStrategy {
preferProjectModules()
}
}
idea {
module {
downloadJavadoc = true