-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (26 loc) · 934 Bytes
/
build.gradle
File metadata and controls
32 lines (26 loc) · 934 Bytes
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
plugins {
id 'java'
}
group = 'org.berezneva'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.cdimascio:dotenv-java:2.3.2'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.4.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.3'
implementation 'com.opencsv:opencsv:5.10'
implementation 'ch.qos.logback:logback-classic:1.5.18'
implementation 'org.slf4j:slf4j-api:2.0.13'
implementation 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.mockito:mockito-core:5.2.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.6.1'
}
test {
useJUnitPlatform()
//systemProperty 'net.bytebuddy.experimental', 'true'
}