Skip to content

Commit a56fe56

Browse files
fix compilation
1 parent 83ce669 commit a56fe56

File tree

7 files changed

+21
-0
lines changed

7 files changed

+21
-0
lines changed

dd-java-agent/agent-debugger/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ dependencies {
4444
implementation libs.dogstatsd
4545
implementation libs.moshi
4646

47+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
48+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
49+
4750
testImplementation libs.asm.util
4851
testImplementation libs.bundles.junit5
4952
testImplementation libs.junit.jupiter.params

dd-java-agent/agent-profiling/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ dependencies {
2020
api libs.slf4j
2121
api project(':internal-api')
2222

23+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
24+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
25+
2326
api project(':dd-java-agent:agent-profiling:profiling-ddprof')
2427
api project(':dd-java-agent:agent-profiling:profiling-uploader')
2528
api project(':dd-java-agent:agent-profiling:profiling-controller')

dd-java-agent/agent-profiling/profiling-controller-openjdk/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ dependencies {
2626
api project(':dd-java-agent:agent-profiling:profiling-controller')
2727
api project(':dd-java-agent:agent-profiling:profiling-controller-jfr')
2828

29+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
30+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
31+
2932
testImplementation libs.bundles.junit5
3033
testImplementation libs.bundles.mockito
3134
testImplementation files(project(':dd-java-agent:agent-profiling:profiling-controller-jfr').sourceSets.test.output)

dd-java-agent/agent-profiling/profiling-controller/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ dependencies {
2222
api project(':components:environment')
2323
api project(':dd-java-agent:agent-profiling:profiling-utils')
2424

25+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
26+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
27+
2528
testImplementation libs.bundles.junit5
2629
testImplementation libs.guava
2730
testImplementation libs.bundles.mockito

dd-java-agent/agent-profiling/profiling-ddprof/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ dependencies {
3636

3737
implementation libs.slf4j
3838

39+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
40+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
41+
3942
testImplementation libs.bundles.jmc
4043
testImplementation libs.bundles.junit5
4144
}

dd-java-agent/agent-profiling/profiling-uploader/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ dependencies {
3333
implementation libs.lz4
3434
implementation libs.aircompressor
3535

36+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
37+
implementation group: 'com.antithesis', name: 'sdk', version: '1.4.5'
38+
3639
testImplementation project(':dd-java-agent:agent-profiling:profiling-testing')
3740
testImplementation project(':utils:test-utils')
3841
testImplementation libs.bundles.junit5

remote-config/remote-config-core/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ dependencies {
3737
implementation(libs.moshi)
3838
implementation(libs.bundles.cafe.crypto)
3939

40+
// Antithesis SDK for assertions and property testing - bundled in tracer JAR
41+
implementation(group = "com.antithesis", name = "sdk", version = "1.4.5")
42+
4043
implementation(project(":internal-api"))
4144

4245
testImplementation(project(":utils:test-utils"))

0 commit comments

Comments
 (0)