forked from kevvlvl/Java8Exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (32 loc) · 1.08 KB
/
build.gradle
File metadata and controls
41 lines (32 loc) · 1.08 KB
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 'java'
id 'application'
}
compileJava {
sourceCompatibility = '9'
targetCompatibility = '9'
}
group 'com.gologic.formation'
version '1.0-SNAPSHOT'
mainClassName = 'com.gologic.formation.Main'
repositories {
mavenCentral()
}
dependencies {
def snakeYamlVersion = '1.33'
def log4jVersion = '2.19.0'
def junitVersion = '5.9.0'
def assertjVersion = '3.23.1'
implementation group: 'org.yaml', name: 'snakeyaml', version: snakeYamlVersion
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: log4jVersion
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: log4jVersion
implementation group: 'org.assertj', name: 'assertj-core', version: assertjVersion
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junitVersion
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitVersion
}
test {
useJUnitPlatform()
testLogging {
events "PASSED", "SKIPPED", "FAILED", "STANDARD_OUT", "STANDARD_ERROR"
}
}