forked from loafle/openapi-generator-original
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE")
|
|
}
|
|
}
|
|
|
|
group = "org.openapitools"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
plugins {
|
|
val kotlinVersion = "1.2.60"
|
|
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.0.3.RELEASE"
|
|
id("io.spring.dependency-management") version "1.0.5.RELEASE"
|
|
}
|
|
|
|
dependencies {
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
compile("org.jetbrains.kotlin:kotlin-reflect")
|
|
compile("org.springframework.boot:spring-boot-starter-web")
|
|
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.springframework.boot:spring-boot-starter-test") {
|
|
exclude(module = "junit")
|
|
}
|
|
}
|