File tree Expand file tree Collapse file tree
src/main/kotlin/hs/kr/entrydsm/status/domain/status/adapter/out/domain Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11object Plugin {
22 const val KOTLIN_JVM = " org.jetbrains.kotlin.jvm"
33 const val KOTLIN_SPRING = " org.jetbrains.kotlin.plugin.spring"
4+ const val KOTLIN_JPA = " org.jetbrains.kotlin.plugin.jpa"
45 const val KOTLIN_KAPT = " org.jetbrains.kotlin.kapt"
56 const val SPRING_BOOT = " org.springframework.boot"
67 const val SPRING_DEPENDENCY_MANAGEMENT = " io.spring.dependency-management"
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
44plugins {
55 id(Plugin .KOTLIN_JVM ) version PluginVersion .KOTLIN_VERSION
66 id(Plugin .KOTLIN_SPRING ) version PluginVersion .KOTLIN_VERSION
7+ id(Plugin .KOTLIN_JPA ) version PluginVersion .KOTLIN_VERSION
78 id(Plugin .KOTLIN_KAPT )
89 id(Plugin .SPRING_BOOT ) version PluginVersion .SPRING_BOOT_VERSION
910 id(Plugin .SPRING_DEPENDENCY_MANAGEMENT ) version PluginVersion .SPRING_DEPENDENCY_MANAGEMENT_VERSION
@@ -83,7 +84,7 @@ dependencies {
8384 implementation(Dependencies .RESILIENCE4J_SPRING_BOOT )
8485
8586 // Spring Cloud Config
86- implementation(Dependencies .SPRING_CLOUD_STARTER_CONFIG )
87+ // implementation(Dependencies.SPRING_CLOUD_STARTER_CONFIG)
8788}
8889
8990protobuf {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class StatusJpaEntity(
2929 var examCode : String? = null ,
3030 var isFirstRoundPass : Boolean = false ,
3131 var isSecondRoundPass : Boolean = false ,
32- var receiptCode : Long = 0
32+ var receiptCode : Long = 0 ,
3333) {
3434 @Id
3535 @GeneratedValue(strategy = GenerationType .IDENTITY )
You can’t perform that action at this time.
0 commit comments