-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (28 loc) · 834 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
34
35
36
37
plugins {
id 'com.gradleup.shadow' version '8.3.0'
}
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.dynatrace.dynahist/dynahist
implementation 'com.dynatrace.dynahist:dynahist:1.4'
implementation 'org.mockito:mockito-core:5.14.2'
implementation 'com.code-intelligence:jazzer-api:0.23.0'
implementation 'commons-io:commons-io:2.18.0'
testImplementation 'com.code-intelligence:jazzer-junit:0.23.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.4'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.5'
}
task getDeps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'build/runtime/'
}