-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (39 loc) · 989 Bytes
/
build.gradle
File metadata and controls
48 lines (39 loc) · 989 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
42
43
44
45
46
47
48
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
}
plugins {
id 'java'
id 'eclipse'
}
repositories {
mavenCentral()
}
repositories {
mavenCentral()
maven { url 'http://repo1.maven.org/maven2' }
}
test {
testLogging.showStandardStreams = true
}
dependencies {
// testing
compile 'org.hamcrest:hamcrest-all:1.3'
compile 'junit:junit:4.13.1'
compile 'org.mockito:mockito-core:5.23.0'
compile 'commons-io:commons-io:2.21.0'
implementation "org.slf4j:slf4j-api:1.7.30"
implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.14.0"
implementation "org.jctools:jctools-core:3.2.0"
}
sourceSets.test {
resources.srcDirs = ["src/test/resources"]
}
tasks.test {
jvmArgs=[ "-javaagent:../../../../build/libs/kieker-${kiekerVersion}-aspectj.jar',
'-Dkieker.monitoring.writer.filesystem.FileWriter.customStoragePath=monitoring-logs',
'-Dorg.aspectj.weaver.showWeaveInfo=true',
'-Daj.weaving.verbose=true' ]
forkEvery=1
}