forked from loafle/openapi-generator-original
* [Kotlin] add spring boot 3 & jakarta extension support * [kotlin-spring] readme update & modified imports * use latest Spring Boot starter parent * use same options as in [Java] generator * new config kotlin-spring-boot-3 --------- Co-authored-by: jayandran sampath <jayandran.sampath@opencastsoftware.com>
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"
|