[NO-ISSUE] Initialize multi-module project

This commit is contained in:
woozu.shin
2022-09-21 21:21:48 +09:00
parent 2c58a5d1f9
commit b4494837f5
15 changed files with 196 additions and 75 deletions

20
domain/build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
plugins {
}
allOpen {
// ref. https://dev-gorany.tistory.com/361
annotation("javax.persistence.Entity")
annotation("javax.persistence.Embeddable")
annotation("javax.persistence.MappedSuperclass")
}
noArg {
annotation("javax.persistence.Entity") // @Entity가 붙은 클래스에 한해서만 no arg 플러그인을 적용
annotation("javax.persistence.Embeddable")
annotation("javax.persistence.MappedSuperclass")
}
dependencies {
}

View File

@@ -0,0 +1,10 @@
package com.kakaoent.adp.adserver.domain
/**
* EmptyDomain
* @author Shin Woo-jin (woozu.shin@kakaoent.com)
* @since 2022-09-21
*
*/
class EmptyDomain {
}