Skip to content

Commit 513eccc

Browse files
committed
build: PostgreSQL, PostGIS, Geometry 파일 추가
1 parent 04c51a9 commit 513eccc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ dependencies {
3535
implementation("org.springframework.boot:spring-boot-starter-data-redis")
3636
implementation("mysql:mysql-connector-java:8.0.33")
3737

38+
// PostgreSQL + PostGIS
39+
implementation("org.postgresql:postgresql:42.7.3") // 최신 버전 확인
40+
implementation ("org.hibernate.orm:hibernate-spatial:6.2.7.Final") // 최신 Hibernate 6
41+
implementation("org.hibernate.orm:hibernate-core:6.2.7.Final")
42+
43+
// Geometry 관련
44+
implementation ("org.locationtech.jts:jts-core:1.18.2")
45+
3846
compileOnly("org.projectlombok:lombok")
3947
testCompileOnly("org.projectlombok:lombok")
4048
testAnnotationProcessor("org.projectlombok:lombok")

0 commit comments

Comments
 (0)