-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.copy
More file actions
41 lines (34 loc) · 771 Bytes
/
build.gradle.copy
File metadata and controls
41 lines (34 loc) · 771 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
33
34
35
36
37
38
39
40
41
plugins {
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.9.0'
testImplementation 'org.assertj:assertj-core:3.22.0'
testImplementation 'org.mockito:mockito-inline:5.1.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.1.0'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'org.apache.logging.log4j:log4j:2.8'
}
sourceSets {
main {
java {
srcDirs = ["src"]
}
}
test {
java {
srcDirs = ["test"]
}
}
}
//test
application {
mainClass = 'demo.App'
}
tasks.named('test') {
useJUnitPlatform()
}