forked from oskardudycz/EventSourcing.JVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (45 loc) · 1.44 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
plugins {
id 'java'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
}
}
group = 'io.event-driven'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// Serialisation
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0'
// EventStoreDB client
implementation 'com.eventstore:db-client-java:5.3.2'
// Logging
implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
implementation 'org.apache.logging.log4j:log4j-core:2.23.1'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.23.1'
// Postgres and JPA for read models
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.1'
implementation 'org.postgresql:postgresql:42.7.3'
// Test frameworks
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
testImplementation 'org.junit.platform:junit-platform-launcher:1.10.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.5'
}
configurations {
all {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
}
tasks.named('test') {
useJUnitPlatform()
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}