-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
68 lines (56 loc) · 1.92 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
67
68
plugins {
id 'org.springframework.boot' version '3.0.1' apply false
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'io.event-driven'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// Spring Boot Web
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.1'
// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.1'
// Retry policy
implementation 'org.springframework.retry:spring-retry:2.0.0'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
// Serialisation
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
// Security
implementation 'org.springframework.boot:spring-boot-starter-security:3.0.1'
// Log4J logging
implementation 'org.springframework.boot:spring-boot-starter-log4j2:3.0.1'
// Postgres and JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.1'
implementation 'org.postgresql:postgresql:42.5.1'
implementation 'junit:junit:4.13.2'
// Test frameworks
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
testImplementation 'org.junit.platform:junit-platform-launcher:1.9.1'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
}
configurations {
all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
all*.exclude group: 'spring-boot-starter-test', module: 'junit'
}
tasks.named('test') {
useJUnitPlatform()
}
tasks.withType(JavaCompile) {
options.compilerArgs += "--enable-preview"
}
tasks.withType(Test) {
jvmArgs += "--enable-preview"
}
tasks.withType(JavaExec) {
jvmArgs += "--enable-preview"
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}