-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
66 lines (55 loc) · 1.86 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
60
61
62
63
64
65
66
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.0'
}
apply plugin: 'java'
group = 'org.springframework.samples'
version = '3.3.1'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
ext.webjarsFontawesomeVersion = "4.7.0"
ext.webjarsBootstrapVersion = "5.2.3"
dependencies {
implementation (
'org.springframework.boot:spring-boot-starter-cache',
'org.springframework.boot:spring-boot-starter-data-jpa',
'org.springframework.boot:spring-boot-starter-thymeleaf',
'org.springframework.boot:spring-boot-starter-web',
'org.springframework.boot:spring-boot-starter-validation',
'javax.cache:cache-api',
'jakarta.xml.bind:jakarta.xml.bind-api',
'org.flywaydb:flyway-core',
'org.flywaydb:flyway-database-postgresql',
'org.springframework.kafka:spring-kafka',
'org.springframework.boot:spring-boot-docker-compose'
)
runtimeOnly (
'org.springframework.boot:spring-boot-starter-actuator',
"org.webjars.npm:bootstrap:${webjarsBootstrapVersion}",
"org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}",
'com.github.ben-manes.caffeine:caffeine',
'com.h2database:h2',
'org.postgresql:postgresql'
)
developmentOnly (
'org.springframework.boot:spring-boot-devtools'
)
testImplementation (
'org.springframework.boot:spring-boot-starter-test',
)
compileOnly (
'org.mapstruct:mapstruct:1.5.3.Final',
'org.projectlombok:lombok:1.18.30'
)
annotationProcessor (
'org.mapstruct:mapstruct-processor:1.5.3.Final',
'org.projectlombok:lombok:1.18.30',
'org.projectlombok:lombok-mapstruct-binding:0.2.0'
)
}
tasks.named('test') {
useJUnitPlatform()
}