build : module-domain 추가 및 build.gradle.kts 설정 변경
This commit is contained in:
@@ -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")
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
@@ -1,2 +1,3 @@
|
||||
rootProject.name = "springmultimodule"
|
||||
include("module-api")
|
||||
include("module-domain")
|
||||
|
||||
Reference in New Issue
Block a user