mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* fix #19211 kotlin-spring flag delegatePattern together with skipDefaultInterface generates broken code * add kotlin-springboot-delegate-nodefaults to the workflow * fix Platform declaration clash * move kotlin-springboot-delegate-nodefaults to the kotlin-server-jdk17 file * fixed empty line
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"
|