mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-14 13:40:55 +00:00
* Fix usage of javax.annotation:javax.annotation-api * Regenerate samples ``` bin/generate-samples.sh bin/configs/java-* bin/configs/jaxrs-* bin/configs/spring-* bin/configs/kotlin-* bin/configs/other/java-* bin/configs/other/jaxrs-* bin/configs/other/kotlin-* bin/configs/other/openapi3/jaxrs-cxf-client.yaml bin/configs/other/openapi3/kotlin-* ```
58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
maven { url = uri("https://repo1.maven.org/maven2") }
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.0.M3")
|
|
}
|
|
}
|
|
|
|
group = "org.openapitools"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
jcenter()
|
|
maven { url = uri("https://repo1.maven.org/maven2") }
|
|
}
|
|
|
|
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 {
|
|
maven { url = uri("https://repo1.maven.org/maven2") }
|
|
maven { url = uri("https://repo.spring.io/snapshot") }
|
|
maven { url = uri("https://repo.spring.io/milestone") }
|
|
}
|