Skip to content

Commit fb19def

Browse files
committed
Added dependencies to javaagent module, changed library instead of implemenation
1 parent b267316 commit fb19def

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

instrumentation/camunda/camunda-7.0/javaagent/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ muzzle {
1515
dependencies {
1616
implementation(project(":instrumentation:camunda:camunda-7.0:library"))
1717

18+
library("org.camunda.bpm:camunda-engine:7.18.0")
19+
library("org.camunda.bpm:camunda-external-task-client:7.18.0")
20+
1821
api("com.google.auto.value:auto-value-annotations:1.6")
1922
annotationProcessor("com.google.auto.value:auto-value:1.6")
2023
}

instrumentation/camunda/camunda-7.0/library/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("org.camunda.bpm:camunda-engine:7.18.0")
7-
implementation("org.camunda.bpm:camunda-external-task-client:7.18.0")
6+
library("org.camunda.bpm:camunda-engine:7.18.0")
7+
library("org.camunda.bpm:camunda-external-task-client:7.18.0")
88

99
api("com.google.auto.value:auto-value-annotations:1.6")
1010
annotationProcessor("com.google.auto.value:auto-value:1.6")

instrumentation/camunda/camunda-7.0/library/src/main/java/io/opentelemetry/instrumentation/camunda/v7_0/behavior/CamundaBehaviorSpanNameExtractor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
package io.opentelemetry.instrumentation.camunda.v7_0.behavior;
77

8-
import io.opentelemetry.instrumentation.camunda.v7_0.common.CamundaCommonRequest;
98
import io.opentelemetry.instrumentation.api.instrumenter.SpanNameExtractor;
9+
import io.opentelemetry.instrumentation.camunda.v7_0.common.CamundaCommonRequest;
1010
import java.util.Arrays;
1111

1212
public class CamundaBehaviorSpanNameExtractor implements SpanNameExtractor<CamundaCommonRequest> {

0 commit comments

Comments
 (0)