cv-api/settings.gradle.kts
2022-09-30 15:57:03 +02:00

21 lines
397 B
Plaintext

pluginManagement {
repositories {
mavenLocal()
mavenCentral()
jcenter()
google()
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.squareup.sqldelight") {
useModule("com.squareup.sqldelight:gradle-plugin:1.5.3")
}
}
}
}
rootProject.name = "cvApi"