-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (26 loc) · 1.09 KB
/
build.gradle
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
33
34
plugins {
id "io.cloudflight.autoconfigure-gradle" version "0.5.3"
}
group = 'com.multitenant'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
api platform(libs.spring.boot.bom)
annotationProcessor platform(libs.spring.boot.bom)
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation("com.querydsl:querydsl-core")
implementation("com.querydsl:querydsl-jpa")
implementation 'org.liquibase:liquibase-core:4.25.0'
runtimeOnly 'org.postgresql:postgresql'
runtimeOnly 'org.yaml:snakeyaml:2.0'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor "com.querydsl:querydsl-apt::jpa"
annotationProcessor "org.springframework.boot:spring-boot-starter-data-jpa"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}