-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
32 lines (24 loc) · 984 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
31
32
group 'se.omegapoint.academy.tdd-lab'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 17
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.14'
implementation group: 'org.json', name: 'json', version: '20201115'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.9.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.2'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.8.0'
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
}
test {
jvmArgs('--add-opens=java.base/java.lang=ALL-UNNAMED')
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.0.2'
distributionUrl = distributionUrl.replace("bin", "all")
}