feat(user): add user entity and repository with JPA integration

This commit is contained in:
2025-11-29 09:38:08 +08:00
parent 3eb651e039
commit 894a1c5d07
10 changed files with 178 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
plugins {
java
`java-library`
}
dependencies {
@@ -8,6 +8,8 @@ dependencies {
implementation("com.google.guava:guava:33.5.0-jre")
// commons-lang3
implementation("org.apache.commons:commons-lang3:3.20.0")
// jpa
api("org.springframework.boot:spring-boot-starter-data-jpa")
// test
testImplementation("org.springframework.boot:spring-boot-starter-test")
// jackson
@@ -17,4 +19,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-aop")
// web
implementation("org.springframework.boot:spring-boot-starter-web")
// postgresql
runtimeOnly("org.postgresql:postgresql")
}