cv-api/settings.gradle.kts

21 lines
397 B
Plaintext
Raw Normal View History

2022-09-30 13:57:03 +00:00
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
jcenter()
google()
gradlePluginPortal()
}
2022-09-30 10:21:11 +00:00
2022-09-30 13:57:03 +00:00
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.squareup.sqldelight") {
useModule("com.squareup.sqldelight:gradle-plugin:1.5.3")
}
}
}
}
rootProject.name = "cvApi"
2022-09-30 10:21:11 +00:00