Skip to content

Commit

Permalink
chore: 스프링 모듈리스 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tlarbals824 committed Aug 6, 2024
1 parent d4e8506 commit eabc5ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ repositories {

val kotestVersion = "5.8.1"
val mockkVersion = "1.13.10"
extra["springModulithVersion"] = "1.2.0"


val asciidoctorExt = "asciidoctorExt"
Expand Down Expand Up @@ -82,15 +83,31 @@ dependencies {
testFixturesImplementation("org.springframework.restdocs:spring-restdocs-mockmvc")

// webclient
// if(System.getProperty("os.name") == "Mac OS X" && System.getProperty("os.arch") == "aarch64")
runtimeOnly("io.netty:netty-resolver-dns-native-macos:4.1.109.Final:osx-aarch_64")
implementation("org.springframework.boot:spring-boot-starter-webflux")


// logger
implementation("io.github.oshai:kotlin-logging-jvm:5.1.0")

// kotlin coroutine
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.8.0")


// spring modulith
implementation("org.springframework.modulith:spring-modulith-starter-core")
implementation("org.springframework.modulith:spring-modulith-starter-jpa")

}



dependencyManagement {
imports {
mavenBom("org.springframework.modulith:spring-modulith-bom:${property("springModulithVersion")}")
}
}

tasks.withType<KotlinCompile> {
Expand Down

0 comments on commit eabc5ea

Please sign in to comment.