forked from loafle/openapi-generator-original
* feat: add companion object to data classes if the implement the interface java.io.Serializable * style: format template file * style: adapt to project's original code style * fix: add missing imports * style: reverted mustache template to original styling * test: generate additional samples for kotlin-springboot-reactive and kotlin-springboot * docs: name full qualified classname of interface java.io.Serializable to prevent confusion with kotlinx.serialization
58 lines
1.8 KiB
Plaintext
58 lines
1.8 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.0.M3")
|
|
}
|
|
}
|
|
|
|
group = "org.openapitools"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
plugins {
|
|
val kotlinVersion = "1.3.30"
|
|
id("org.jetbrains.kotlin.jvm") version kotlinVersion
|
|
id("org.jetbrains.kotlin.plugin.jpa") version kotlinVersion
|
|
id("org.jetbrains.kotlin.plugin.spring") version kotlinVersion
|
|
id("org.springframework.boot") version "2.2.0.M3"
|
|
id("io.spring.dependency-management") version "1.0.5.RELEASE"
|
|
}
|
|
|
|
dependencies {
|
|
val kotlinxCoroutinesVersion="1.2.0"
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
compile("org.jetbrains.kotlin:kotlin-reflect")
|
|
compile("org.springframework.boot:spring-boot-starter-webflux")
|
|
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinxCoroutinesVersion")
|
|
compile("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:$kotlinxCoroutinesVersion")
|
|
compile("io.swagger:swagger-annotations:1.5.21")
|
|
compile("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
|
|
compile("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
|
|
compile("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-test-junit5")
|
|
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
|
exclude(module = "junit")
|
|
}
|
|
testCompile("org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinxCoroutinesVersion")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://repo.spring.io/snapshot") }
|
|
maven { url = uri("https://repo.spring.io/milestone") }
|
|
}
|