-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 972 Bytes
/
build.gradle
File metadata and controls
37 lines (32 loc) · 972 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
muzzle {
pass {
name = 'all'
group = 'org.json'
module = 'json'
versions = '[20070829, ]'
assertInverse = true
}
pass {
name = 'before_20241224'
group = 'org.json'
module = 'json'
versions = '[20070829, 20241224)'
assertInverse = true
}
pass {
name = 'after_20241224'
group = 'org.json'
module = 'json'
versions = '[20241224, ]'
assertInverse = true
}
}
apply from: "$rootDir/gradle/java.gradle"
addTestSuiteForDir('latestDepTest', 'test')
dependencies {
compileOnly group: 'org.json', name: 'json', version: '20230227'
testImplementation group: 'org.json', name: 'json', version: '20230227'
testRuntimeOnly project(':dd-java-agent:instrumentation:iast-instrumenter')
testRuntimeOnly project(':dd-java-agent:instrumentation:java-io') //Needed for Reader
latestDepTestImplementation group: 'org.json', name: 'json', version: '20250107' // TODO replace with + when APPSEC-58007 solved
}