[NO-ISSUE] Initialize multi-module project
This commit is contained in:
20
domain/build.gradle.kts
Normal file
20
domain/build.gradle.kts
Normal 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 {
|
||||
}
|
||||
@@ -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 {
|
||||
}
|
||||
Reference in New Issue
Block a user