|
69 | 69 | <version>3.0.2</version>
|
70 | 70 | <scope>provided</scope>
|
71 | 71 | </dependency>
|
72 |
| - |
73 |
| - <!-- test dependencies --> |
74 |
| - <dependency> |
75 |
| - <groupId>org.junit.jupiter</groupId> |
76 |
| - <artifactId>junit-jupiter</artifactId> |
77 |
| - <version>${junit-jupiter.version}</version> |
78 |
| - <scope>test</scope> |
79 |
| - </dependency> |
80 |
| - <dependency> |
81 |
| - <groupId>org.junit.jupiter</groupId> |
82 |
| - <artifactId>junit-jupiter-params</artifactId> |
83 |
| - <version>${junit-jupiter.version}</version> |
84 |
| - <scope>test</scope> |
85 |
| - </dependency> |
86 |
| - <dependency> |
87 |
| - <groupId>org.mockito</groupId> |
88 |
| - <artifactId>mockito-core</artifactId> |
89 |
| - <version>5.18.0</version> |
90 |
| - <scope>test</scope> |
91 |
| - </dependency> |
92 |
| - <dependency> |
93 |
| - <groupId>org.assertj</groupId> |
94 |
| - <artifactId>assertj-core</artifactId> |
95 |
| - <version>3.27.3</version> |
96 |
| - <scope>test</scope> |
97 |
| - </dependency> |
98 |
| - <dependency> |
99 |
| - <groupId>com.google.guava</groupId> |
100 |
| - <artifactId>guava</artifactId> |
101 |
| - <version>${guava.version}</version> |
102 |
| - <scope>test</scope> |
103 |
| - </dependency> |
104 |
| - <dependency> |
105 |
| - <groupId>org.slf4j</groupId> |
106 |
| - <artifactId>slf4j-simple</artifactId> |
107 |
| - <version>2.0.17</version> |
108 |
| - <scope>test</scope> |
109 |
| - </dependency> |
110 |
| - <dependency> |
111 |
| - <groupId>org.junit-pioneer</groupId> |
112 |
| - <artifactId>junit-pioneer</artifactId> |
113 |
| - <version>2.3.0</version> |
114 |
| - <scope>test</scope> |
115 |
| - </dependency> |
116 | 72 | </dependencies>
|
117 | 73 |
|
118 | 74 | <build>
|
|
387 | 343 | <type>pom</type>
|
388 | 344 | <scope>import</scope>
|
389 | 345 | </dependency>
|
| 346 | + <dependency> |
| 347 | + <groupId>io.opentelemetry.instrumentation</groupId> |
| 348 | + <artifactId>opentelemetry-instrumentation-bom-alpha</artifactId> |
| 349 | + <version>${otel.instrumentation.version}</version> |
| 350 | + <type>pom</type> |
| 351 | + <scope>import</scope> |
| 352 | + </dependency> |
| 353 | + <dependency> |
| 354 | + <groupId>io.opentelemetry</groupId> |
| 355 | + <artifactId>opentelemetry-proto</artifactId> |
| 356 | + <version>1.7.1-alpha</version> |
| 357 | + <scope>test</scope> |
| 358 | + </dependency> |
390 | 359 | </dependencies>
|
391 | 360 | </dependencyManagement>
|
| 361 | + <dependencies> |
| 362 | + <!-- test dependencies --> |
| 363 | + <dependency> |
| 364 | + <groupId>org.junit.jupiter</groupId> |
| 365 | + <artifactId>junit-jupiter</artifactId> |
| 366 | + <version>${junit-jupiter.version}</version> |
| 367 | + <scope>test</scope> |
| 368 | + </dependency> |
| 369 | + <dependency> |
| 370 | + <groupId>org.junit.jupiter</groupId> |
| 371 | + <artifactId>junit-jupiter-params</artifactId> |
| 372 | + <version>${junit-jupiter.version}</version> |
| 373 | + <scope>test</scope> |
| 374 | + </dependency> |
| 375 | + <dependency> |
| 376 | + <groupId>org.mockito</groupId> |
| 377 | + <artifactId>mockito-core</artifactId> |
| 378 | + <version>5.18.0</version> |
| 379 | + <scope>test</scope> |
| 380 | + </dependency> |
| 381 | + <dependency> |
| 382 | + <groupId>org.assertj</groupId> |
| 383 | + <artifactId>assertj-core</artifactId> |
| 384 | + <version>3.27.3</version> |
| 385 | + <scope>test</scope> |
| 386 | + </dependency> |
| 387 | + <dependency> |
| 388 | + <groupId>com.google.guava</groupId> |
| 389 | + <artifactId>guava</artifactId> |
| 390 | + <version>${guava.version}</version> |
| 391 | + <scope>test</scope> |
| 392 | + </dependency> |
| 393 | + <dependency> |
| 394 | + <groupId>org.slf4j</groupId> |
| 395 | + <artifactId>slf4j-simple</artifactId> |
| 396 | + <version>2.0.17</version> |
| 397 | + <scope>test</scope> |
| 398 | + </dependency> |
| 399 | + <dependency> |
| 400 | + <groupId>org.junit-pioneer</groupId> |
| 401 | + <artifactId>junit-pioneer</artifactId> |
| 402 | + <version>2.3.0</version> |
| 403 | + <scope>test</scope> |
| 404 | + </dependency> |
| 405 | + <dependency> |
| 406 | + <groupId>org.awaitility</groupId> |
| 407 | + <artifactId>awaitility</artifactId> |
| 408 | + <version>4.3.0</version> |
| 409 | + <scope>test</scope> |
| 410 | + </dependency> |
| 411 | + <dependency> |
| 412 | + <groupId>org.wiremock</groupId> |
| 413 | + <artifactId>wiremock</artifactId> |
| 414 | + <version>3.13.1</version> |
| 415 | + <scope>test</scope> |
| 416 | + <exclusions> |
| 417 | + <exclusion> |
| 418 | + <groupId>org.hamcrest</groupId> |
| 419 | + <artifactId>hamcrest-core</artifactId> |
| 420 | + </exclusion> |
| 421 | + </exclusions> |
| 422 | + </dependency> |
| 423 | + </dependencies> |
392 | 424 | </profile>
|
393 | 425 | <profile>
|
394 | 426 | <id>javadoc</id>
|
|
0 commit comments