forked from ohm-softa/06-annotations-reflection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (26 loc) · 788 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
33
plugins {
id 'java'
id 'application'
id 'idea'
}
group 'ohm.softa'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
mainClassName = "ohm.softa.a06.App"
repositories {
mavenCentral()
}
dependencies {
implementation("org.apache.commons:commons-lang3:$apacheCommonsLangVersion")
implementation("org.apache.logging.log4j:log4j-api:${log4j2Version}")
implementation("org.apache.logging.log4j:log4j-core:${log4j2Version}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}