forked from javers/javers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
26 lines (21 loc) · 1.21 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
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencies {
api project(':javers-spring-mongo')
api project(':javers-persistence-mongo')
implementation "org.mongodb:mongodb-driver-sync:$mongoDbDriverVersion"
optionalImplementation "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion"
optionalImplementation "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
testImplementation project(path: ":javers-spring", configuration: "testArtifacts")
testImplementation project(path: ":javers-persistence-mongo", configuration: "testArtifacts")
testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testImplementation "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion"
testImplementation "org.springframework.security:spring-security-core:$springSecurityVersion"
testImplementation "org.spockframework:spock-spring:$spockVersion"
testImplementation "com.github.silaev:mongodb-replica-set:0.4.3"
testImplementation "org.testcontainers:spock:$testcontainers"
testImplementation "org.testcontainers:mongodb:$testcontainers"
}