forked from loafle/openapi-generator-original
* Bumped kotlin spring-jvm-webclient spring boot version from 2.7.11 to 3.1.0 * Do not redefine HttpHeaders and MediaType for simpler code * Added a simpler constructor to the api and simplified encodeURIComponent * Added support for Spring Boot 3 in kotlin-client jvm-spring-webclient generator * Fixed small syntactical regression in Kotlin client build.gradle
42 lines
1.2 KiB
Groovy
42 lines
1.2 KiB
Groovy
group 'org.openapitools'
|
|
version '1.0.0'
|
|
|
|
wrapper {
|
|
gradleVersion = '7.5'
|
|
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
|
|
}
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.7.21'
|
|
ext.spring_boot_version = "2.7.12"
|
|
ext.reactor_version = "3.5.6"
|
|
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'maven-publish'
|
|
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3"
|
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
|
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
|
implementation "io.projectreactor:reactor-core:$reactor_version"
|
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
|
}
|