-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
executable file
·32 lines (29 loc) · 1.43 KB
/
build.gradle.kts
File metadata and controls
executable file
·32 lines (29 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
val kotlinVersion = findProperty("kotlin.version") as String
val jpaVersion = findProperty("jpa.version") as String
val hibernateVersion = findProperty("hibernate.version") as String
val h2Version = findProperty("h2.version") as String
val querydslVersion = findProperty("querydsl.version") as String
val assertjVersion = findProperty("assertj.version") as String
plugins {
kotlin("jvm")
id("com.google.devtools.ksp")
kotlin("plugin.jpa")
kotlin("plugin.serialization")
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation("jakarta.persistence:jakarta.persistence-api:${jpaVersion}")
implementation("io.github.openfeign.querydsl:querydsl-core:${querydslVersion}")
implementation("org.hibernate.orm:hibernate-core:${hibernateVersion}")
ksp("io.github.openfeign.querydsl:querydsl-ksp-codegen:${querydslVersion}")
implementation("org.locationtech.jts:jts-core:1.19.0")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.0")
testImplementation("io.github.openfeign.querydsl:querydsl-jpa:${querydslVersion}")
testImplementation("org.assertj:assertj-core:${assertjVersion}")
testImplementation("org.hibernate.orm:hibernate-core:${hibernateVersion}")
testImplementation("com.h2database:h2:${h2Version}")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}")
}