generated from pricelees/issue-pr-template
[#20] 도메인별 예외 분리 #21
@ -1,12 +1,11 @@
|
|||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
val springBootVersion = "3.5.3"
|
val springBootVersion = "3.5.3"
|
||||||
val kotlinVersion = "2.2.0"
|
val kotlinVersion = "2.2.0"
|
||||||
|
|
||||||
java
|
|
||||||
id("org.springframework.boot") version springBootVersion
|
id("org.springframework.boot") version springBootVersion
|
||||||
id("io.spring.dependency-management") version "1.1.7"
|
id("io.spring.dependency-management") version "1.1.7"
|
||||||
|
|
||||||
//kotlin plugins
|
|
||||||
kotlin("jvm") version kotlinVersion
|
kotlin("jvm") version kotlinVersion
|
||||||
kotlin("plugin.spring") version kotlinVersion
|
kotlin("plugin.spring") version kotlinVersion
|
||||||
kotlin("plugin.jpa") version kotlinVersion
|
kotlin("plugin.jpa") version kotlinVersion
|
||||||
@ -22,61 +21,59 @@ java {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kapt {
|
||||||
|
keepJavacAnnotationProcessors = true
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// spring
|
// Spring
|
||||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-validation")
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
||||||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0")
|
|
||||||
|
// API docs
|
||||||
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9")
|
||||||
|
|
||||||
|
// DB
|
||||||
runtimeOnly("com.h2database:h2")
|
runtimeOnly("com.h2database:h2")
|
||||||
|
|
||||||
// jwt
|
// Jwt
|
||||||
implementation("io.jsonwebtoken:jjwt:0.9.1")
|
implementation("io.jsonwebtoken:jjwt:0.12.6")
|
||||||
implementation("javax.xml.bind:jaxb-api:2.3.1")
|
|
||||||
|
|
||||||
// kotlin
|
// Kotlin
|
||||||
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
||||||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
||||||
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
|
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
|
||||||
|
|
||||||
// test
|
// Test
|
||||||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||||
testImplementation("io.mockk:mockk:1.14.4")
|
testImplementation("io.mockk:mockk:1.14.4")
|
||||||
|
testImplementation("com.ninja-squad:springmockk:4.0.2")
|
||||||
|
|
||||||
|
// Kotest
|
||||||
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
|
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
|
||||||
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
|
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
|
||||||
testImplementation("com.ninja-squad:springmockk:4.0.2")
|
|
||||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
// RestAssured
|
||||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
testImplementation("io.rest-assured:rest-assured:5.5.5")
|
||||||
testImplementation("io.rest-assured:rest-assured:5.3.1")
|
|
||||||
testImplementation("io.rest-assured:kotlin-extensions:5.5.5")
|
testImplementation("io.rest-assured:kotlin-extensions:5.5.5")
|
||||||
}
|
}
|
||||||
|
|
||||||
kapt {
|
tasks.withType<Test> {
|
||||||
keepJavacAnnotationProcessors = true
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<Test>().configureEach {
|
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks.withType<KotlinCompile> {
|
||||||
compileKotlin {
|
|
||||||
compilerOptions {
|
compilerOptions {
|
||||||
freeCompilerArgs.add("-Xjsr305=strict")
|
freeCompilerArgs.addAll(
|
||||||
|
"-Xjsr305=strict",
|
||||||
|
"-Xannotation-default-target=param-property"
|
||||||
|
)
|
||||||
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
||||||
freeCompilerArgs.set(listOf("-Xannotation-default-target=param-property"))
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
compileTestKotlin {
|
|
||||||
compilerOptions {
|
|
||||||
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
|
||||||
freeCompilerArgs.set(listOf("-Xannotation-default-target=param-property"))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user