@@ -26,6 +26,7 @@ val isDevelopment: Boolean = project.findProperty("me.snoty.development")?.toStr
26
26
allprojects {
27
27
repositories {
28
28
mavenCentral()
29
+ maven(" https://maven.simulatan.me/releases" )
29
30
}
30
31
31
32
tasks.withType<KotlinCompile >().configureEach {
@@ -85,6 +86,7 @@ testing {
85
86
implementation(tests.testcontainers.junit)
86
87
implementation(tests.testcontainers.keycloak)
87
88
implementation(tests.testcontainers.mongodb)
89
+ implementation(monitoring.opentelemetry.testing)
88
90
implementation(devSourceSet.output)
89
91
90
92
runtimeOnly(tests.junit.engine)
@@ -140,6 +142,11 @@ dependencies {
140
142
implementation(monitoring.ktor.opentelemetry)
141
143
implementation(monitoring.ktor.server.metricsMicrometer)
142
144
implementation(monitoring.micrometer.prometheus)
145
+ implementation(monitoring.opentelemetry.api)
146
+ implementation(monitoring.opentelemetry.context)
147
+ implementation(monitoring.opentelemetry.semconv)
148
+ implementation(monitoring.opentelemetry.kotlin)
149
+ implementation(monitoring.opentelemetry.logback)
143
150
144
151
// database
145
152
implementation(database.mongodb)
@@ -164,6 +171,8 @@ dependencies {
164
171
165
172
// dev
166
173
devImplementation(dev.keycloak.adminClient)
174
+ devImplementation(monitoring.opentelemetry.sdk)
175
+ devImplementation(monitoring.opentelemetry.exporter.otlp)
167
176
168
177
moduleImplementation(projects.integrations.api)
169
178
// depend on all integrations by default
0 commit comments