build : module-domain 추가 및 build.gradle.kts 설정 변경

This commit is contained in:
banjjoknim
2022-05-01 01:54:42 +09:00
parent 17cca4aaa7
commit ee18a0501d
3 changed files with 13 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_11
dependencies {
implementation(project(":module-domain"))
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")

View File

@@ -0,0 +1,10 @@
plugins {
kotlin("jvm") version "1.6.21"
kotlin("plugin.jpa") version "1.6.21"
}
group = "com.banjjoknim"
version = "0.0.1-SNAPSHOT"
dependencies {
}

View File

@@ -1,2 +1,3 @@
rootProject.name = "springmultimodule"
include("module-api")
include("module-domain")