-
Notifications
You must be signed in to change notification settings - Fork 134
/
build.gradle
30 lines (25 loc) · 1006 Bytes
/
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
plugins {
id 'java'
}
subprojects {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
// Dependencies used by multiple sub-projects
ext.libraries = [
// testing
junit_jupiter_api: [group: "org.junit.jupiter", name: "junit-jupiter-api", version: "5.9.2"],
junit_jupiter_params: [group: "org.junit.jupiter", name: "junit-jupiter-params", version: "5.9.2"],
junit_jupiter_engine: [group: "org.junit.jupiter", name: "junit-jupiter-engine", version: "5.9.2"],
assertj_core: [group: "org.assertj", name: "assertj-core", version: "3.20.2"],
mockito: [group: "org.mockito", name: "mockito-core", version: "5.1.1"],
// logging
slf4j_api: [group: 'org.slf4j', name: 'slf4j-api', version: '2.0.6'],
logback: [group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.5'],
]
}