forked from loafle/openapi-generator-original
* kotlin-server: Fix required + nullable combination * Update FILES * Updated generated code
34 lines
620 B
Plaintext
34 lines
620 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.0.21"
|
|
}
|
|
|
|
group = "org.openapitools"
|
|
version = "1.0.0"
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("io.javalin:javalin:6.1.6")
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.17.1")
|
|
implementation("org.slf4j:slf4j-simple:2.0.13")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|