-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (55 loc) · 1.56 KB
/
build.gradle
File metadata and controls
69 lines (55 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
plugins {
id 'java'
id 'application'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
sourceSets {
integrationTest {
java.srcDir file('src/integrationTest/java')
java.srcDir file('src/simulation/java')
resources.srcDir file('src/integrationTest/resources')
compileClasspath += sourceSets.main.output + configurations.testRuntimeClasspath
runtimeClasspath += output + compileClasspath
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1'
testImplementation "org.mockito:mockito-core:2.+"
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1'
implementation "org.apache.logging.log4j:log4j-api:2.11.2"
implementation "org.apache.logging.log4j:log4j-core:2.11.2"
implementation "com.typesafe:config:1.3.4"
}
application {
mainClassName = 'SwimJava'
}
run {
systemProperties System.getProperties()
}
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
}
}
task integrationTest(type: Test) {
description = 'Runs integration tests.'
group = 'verification'
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
testClassesDirs = sourceSets.integrationTest.output.classesDirs
classpath = sourceSets.integrationTest.runtimeClasspath
mustRunAfter test
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}