We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c51a9 commit 513ecccCopy full SHA for 513eccc
build.gradle.kts
@@ -35,6 +35,14 @@ dependencies {
35
implementation("org.springframework.boot:spring-boot-starter-data-redis")
36
implementation("mysql:mysql-connector-java:8.0.33")
37
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
46
compileOnly("org.projectlombok:lombok")
47
testCompileOnly("org.projectlombok:lombok")
48
testAnnotationProcessor("org.projectlombok:lombok")
0 commit comments