|
131 | 131 | <relocation> |
132 | 132 | <pattern>io</pattern> |
133 | 133 | <shadedPattern>com.google.bqjdbc.shaded.io</shadedPattern> |
| 134 | + <excludes> |
| 135 | + <exclude>io.opentelemetry.api.*</exclude> |
| 136 | + <exclude>io.opentelemetry.context.*</exclude> |
| 137 | + </excludes> |
134 | 138 | </relocation> |
135 | 139 | </relocations> |
136 | 140 | <filters> |
|
277 | 281 | <artifactId>httpcore5</artifactId> |
278 | 282 | </dependency> |
279 | 283 |
|
| 284 | + <!-- OpenTelemetry APIs (unshaded) --> |
| 285 | + <dependency> |
| 286 | + <groupId>io.opentelemetry</groupId> |
| 287 | + <artifactId>opentelemetry-api</artifactId> |
| 288 | + <version>1.37.0</version> |
| 289 | + </dependency> |
| 290 | + <dependency> |
| 291 | + <groupId>io.opentelemetry</groupId> |
| 292 | + <artifactId>opentelemetry-context</artifactId> |
| 293 | + <version>1.37.0</version> |
| 294 | + </dependency> |
| 295 | + |
| 296 | + <!-- OpenTelemetry SDK & Exporters (shaded) --> |
| 297 | + <dependency> |
| 298 | + <groupId>io.opentelemetry</groupId> |
| 299 | + <artifactId>opentelemetry-sdk</artifactId> |
| 300 | + <version>1.37.0</version> |
| 301 | + </dependency> |
| 302 | + <dependency> |
| 303 | + <groupId>com.google.cloud.opentelemetry</groupId> |
| 304 | + <artifactId>exporter-trace</artifactId> |
| 305 | + <version>0.33.0</version> |
| 306 | + </dependency> |
| 307 | + |
| 308 | + <!-- Explicitly pin versions to satisfy maven-enforcer RequireUpperBoundDeps --> |
| 309 | + <dependency> |
| 310 | + <groupId>org.slf4j</groupId> |
| 311 | + <artifactId>slf4j-api</artifactId> |
| 312 | + <version>2.0.16</version> |
| 313 | + </dependency> |
| 314 | + <dependency> |
| 315 | + <groupId>com.google.re2j</groupId> |
| 316 | + <artifactId>re2j</artifactId> |
| 317 | + <version>1.8</version> |
| 318 | + </dependency> |
| 319 | + |
280 | 320 | <!-- Test Dependencies --> |
281 | 321 | <dependency> |
282 | 322 | <groupId>com.google.truth</groupId> |
|
0 commit comments