sample-modules/demo/build.gradle.kts

31 lines
1008 B
Plaintext
Raw Normal View History

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
kotlin("jvm")
kotlin("plugin.spring")
}
dependencies {
api(project(":lib"))
2021-01-28 13:22:46 +07:00
api(project(":customer-api"))
api(project(":login-api"))
implementation("org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:2.3.4.RELEASE")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
tasks.withType<Test> {
useJUnitPlatform()
}
2021-01-26 14:15:22 +07:00
tasks.withType<org.springframework.boot.gradle.tasks.bundling.BootJar> {
enabled = true
}