#32 multi module: module setting

This commit is contained in:
haerong22
2023-01-29 01:31:29 +09:00
parent 0e9ca9cbd9
commit d396757563
3 changed files with 5 additions and 2 deletions

View File

@@ -23,8 +23,12 @@ dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation project(':module-common')
}
tasks.named('test') {
useJUnitPlatform()
}
tasks.register("prepareKotlinBuildScriptModel") {}

View File

@@ -1 +0,0 @@
rootProject.name = 'module-api'

View File

@@ -1,4 +1,4 @@
rootProject.name = 'multimodule'
include 'module-api'
include 'mudule-common'
include 'module-common'