2021-08-07 09:21:08 +07:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("org.springframework.boot") version "2.6.0-SNAPSHOT"
|
|
|
|
id("io.spring.dependency-management") version "1.0.11.RELEASE"
|
|
|
|
kotlin("jvm") version "1.5.21"
|
|
|
|
kotlin("plugin.spring") version "1.5.21"
|
|
|
|
kotlin("plugin.jpa") version "1.5.21"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.cubetiqs"
|
|
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
java.sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven { url = uri("https://m.ctdn.net") }
|
|
|
|
}
|
|
|
|
|
|
|
|
extra["graphqlVersion"] = "11.0.0"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("com.graphql-java-kickstart:graphql-spring-boot-starter:${property("graphqlVersion")}")
|
2021-08-07 10:27:34 +07:00
|
|
|
implementation("com.graphql-java-kickstart:playground-spring-boot-starter:${property("graphqlVersion")}")
|
2021-08-07 09:21:08 +07:00
|
|
|
implementation("com.graphql-java-kickstart:voyager-spring-boot-starter:${property("graphqlVersion")}")
|
|
|
|
|
2021-08-07 10:27:34 +07:00
|
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
2021-08-07 09:21:08 +07:00
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
|
|
|
|
|
|
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
|
|
testImplementation("com.graphql-java-kickstart:graphql-spring-boot-starter-test:${property("graphqlVersion")}")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs = listOf("-Xjsr305=strict")
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<Test> {
|
|
|
|
useJUnitPlatform()
|
2021-08-07 10:27:34 +07:00
|
|
|
}
|