-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
59 lines (46 loc) · 1.98 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.15'
id 'io.spring.dependency-management' version '1.1.3'
}
def lombokVersion = '1.18.30'
group = 'uk.gov.digital.ho.hocs'
sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude(module: 'spring-boot-starter-tomcat')
}
implementation 'org.springframework.boot:spring-boot-starter-undertow'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-json'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.amazonaws:aws-java-sdk-sns:1.12.149'
implementation 'com.vladmihalcea:hibernate-types-55:2.21.1'
implementation 'net.logstash.logback:logstash-logback-encoder:7.3'
implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
implementation 'org.json:json:20230618'
implementation 'org.flywaydb:flyway-core:8.5.13'
runtimeOnly 'org.postgresql:postgresql:42.6.0'
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor 'org.springframework:spring-context-indexer:5.3.24'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'com.google.guava:guava:32.1.2-jre'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.assertj:assertj-core'
testImplementation 'junit:junit:4.13.2'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2022.0.4"
}
}
jar {
enabled = false
}