-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (40 loc) · 1.36 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'com.gradleup.shadow' version '8.3.0'
}
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.commons:commons-compress:1.27.1'
// the following should be automatically included,
// we should try again later to remove this again
implementation 'commons-codec:commons-codec:1.17.2'
// some additional dependencies for additional archivers/compressors
implementation 'org.tukaani:xz:1.9'
//noinspection GradlePackageUpdate
implementation 'com.github.luben:zstd-jni:1.5.5-5'
implementation 'org.brotli:dec:0.1.2'
// this needs to match what commons-compress is using
//noinspection GradlePackageUpdate
implementation 'org.ow2.asm:asm:9.4'
// for configuring log4j to be silent during fuzzing
implementation 'org.apache.logging.log4j:log4j-core:2.24.3'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.24.3'
//noinspection GradlePackageUpdate
implementation 'commons-io:commons-io:2.18.0'
implementation 'org.apache.commons:commons-lang3:3.17.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/'
}