mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2026-03-08 08:49:02 +00:00
* add required template files and logic in generator * add possibility to choose between coroutines and reactor style reactive for spring declarative http client * remove Flow as array-type input param for declarative http interface * better name for switches * revert change * fix implementation and add tests * revert unrelated formatting changes * add compile check for generated code to github action config file * fix output folder for config files * commit generated files * commit generated docs files * fix compile test output folder names * fix sample generation * fix compile to jdk 17+ * force test rerun * remove misleading warning * remove extraneous mustache files. Rebuild samples * restoring incorrectly deleted output files
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"
|