File tree Expand file tree Collapse file tree 5 files changed +9
-53
lines changed
kafka-connect-fitbit-source
kafka-connect-oura-source
kafka-connect-rest-source
oura-library/src/main/resources Expand file tree Collapse file tree 5 files changed +9
-53
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ object Versions {
1919 const val log4j2 = " 2.23.1"
2020 const val slf4j = " 2.0.13"
2121 const val sentryLog4j = " 1.7.30"
22+ const val sentryOpenTelemetryAgent = " 8.1.0"
2223
2324 const val okhttp = " 4.12.0"
2425
Original file line number Diff line number Diff line change @@ -34,12 +34,5 @@ dependencies {
3434 compileOnly(platform(" com.fasterxml.jackson:jackson-bom:${Versions .jackson} " ))
3535 compileOnly(" com.fasterxml.jackson.core:jackson-databind" )
3636
37- // Application monitoring
38- // This dependency is not used by the REST connector, but copied into the Docker image (Dockerfile)
39- compileOnly(" io.sentry:sentry-log4j:${Versions .sentryLog4j} " ) {
40- // Exclude log4j with security vulnerability (safe version is provided by docker image).
41- exclude(group = " log4j" , module = " log4j" )
42- }
43-
4437 testImplementation(" org.apache.kafka:connect-api:${Versions .kafka} " )
4538}
Original file line number Diff line number Diff line change @@ -33,12 +33,5 @@ dependencies {
3333 compileOnly(platform(" com.fasterxml.jackson:jackson-bom:${Versions .jackson} " ))
3434 compileOnly(" com.fasterxml.jackson.core:jackson-databind" )
3535
36- // Application monitoring
37- // This dependency is not used by the REST connector, but copied into the Docker image (Dockerfile)
38- compileOnly(" io.sentry:sentry-log4j:${Versions .sentryLog4j} " ) {
39- // Exclude log4j with security vulnerability (safe version is provided by docker image).
40- exclude(group = " log4j" , module = " log4j" )
41- }
42-
4336 testImplementation(" org.apache.kafka:connect-api:${Versions .kafka} " )
4437}
Original file line number Diff line number Diff line change @@ -11,4 +11,12 @@ dependencies {
1111 testImplementation(" com.github.tomakehurst:wiremock:${Versions .wiremock} " )
1212
1313 testImplementation(" org.apache.kafka:connect-api:${Versions .kafka} " )
14+
15+ // Application monitoring
16+ // These dependencies are not used by the REST connector, but copied into the Docker image (Dockerfile)
17+ runtimeOnly(" io.sentry:sentry-log4j:${Versions .sentryLog4j} " ) {
18+ // Exclude log4j with security vulnerability (safe version is provided by docker image).
19+ exclude(group = " log4j" , module = " log4j" )
20+ }
21+ runtimeOnly(" io.sentry:sentry-opentelemetry-agent:${Versions .sentryOpenTelemetryAgent} " )
1422}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments