forked from loafle/openapi-generator-original
* [kotlin-spring] Adds useFlowForArrayReturnType option for reactive mode (#16130) * [kotlin-spring] Replaces manual doc change with generated one (#16130) * [kotlin-spring] Fixes errors (#16130) * [kotlin-spring] Adds samples (#16130)
16 lines
480 B
Groovy
16 lines
480 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url = uri("https://repo.spring.io/snapshot") }
|
|
maven { url = uri("https://repo.spring.io/milestone") }
|
|
gradlePluginPortal()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "org.springframework.boot") {
|
|
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "openapi-spring"
|