-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
76 lines (62 loc) · 2.31 KB
/
build.gradle.kts
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {
group.set("org.springframework.pulsar")
module.set("spring-pulsar")
versions.set("[1.0.0,)")
assertInverse.set(true)
excludeInstrumentationName("pulsar-2.8")
}
}
dependencies {
library("org.springframework.pulsar:spring-pulsar:1.0.0")
implementation(project(":instrumentation:pulsar:pulsar-2.8:javaagent"))
testInstrumentation(project(":instrumentation:pulsar:pulsar-2.8:javaagent"))
testImplementation(project(":instrumentation:spring:spring-pulsar-1.0:testing"))
testLibrary("org.springframework.boot:spring-boot-starter-test:3.2.4")
testLibrary("org.springframework.boot:spring-boot-starter:3.2.4")
}
val latestDepTest = findProperty("testLatestDeps") as Boolean
testing {
suites {
val testReceiveSpansDisabled by registering(JvmTestSuite::class) {
dependencies {
implementation(project(":instrumentation:spring:spring-pulsar-1.0:testing"))
if (latestDepTest) {
implementation("org.springframework.pulsar:spring-pulsar:latest.release")
implementation("org.springframework.boot:spring-boot-starter-test:latest.release")
implementation("org.springframework.boot:spring-boot-starter:latest.release")
} else {
implementation("org.springframework.pulsar:spring-pulsar:1.0.0")
implementation("org.springframework.boot:spring-boot-starter-test:3.2.4")
implementation("org.springframework.boot:spring-boot-starter:3.2.4")
}
}
targets {
all {
testTask.configure {
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
jvmArgs("-Dotel.instrumentation.pulsar.experimental-span-attributes=true")
jvmArgs("-Dotel.instrumentation.messaging.experimental.receive-telemetry.enabled=false")
}
}
}
}
}
}
tasks {
test {
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
jvmArgs("-Dotel.instrumentation.pulsar.experimental-span-attributes=true")
jvmArgs("-Dotel.instrumentation.messaging.experimental.receive-telemetry.enabled=true")
}
check {
dependsOn(testing.suites)
}
}
// spring 6 requires java 17
otelJava {
minJavaVersionSupported.set(JavaVersion.VERSION_17)
}