|
363 | 363 | </plugins>
|
364 | 364 | </build>
|
365 | 365 | </profile>
|
366 |
| - <profile> |
367 |
| - <id>default</id> |
368 |
| - <activation> |
369 |
| - <activeByDefault>true</activeByDefault> |
370 |
| - </activation> |
371 |
| - <build> |
372 |
| - <plugins> |
373 |
| - <plugin> |
374 |
| - <groupId>org.apache.maven.plugins</groupId> |
375 |
| - <artifactId>maven-compiler-plugin</artifactId> |
376 |
| - <version>3.13.0</version> |
377 |
| - <configuration> |
378 |
| - <testExcludes> |
379 |
| - <exclude>**/ObservationInWsConfigurerTests.*</exclude> |
380 |
| - </testExcludes> |
381 |
| - </configuration> |
382 |
| - </plugin> |
383 |
| - <plugin> |
384 |
| - <groupId>org.apache.maven.plugins</groupId> |
385 |
| - <artifactId>maven-surefire-plugin</artifactId> |
386 |
| - <version>3.5.2</version> |
387 |
| - <configuration> |
388 |
| - <excludes> |
389 |
| - <exclude>**/ObservationInWsConfigurerTests.*</exclude> |
390 |
| - </excludes> |
391 |
| - </configuration> |
392 |
| - </plugin> |
393 |
| - </plugins> |
394 |
| - </build> |
395 |
| - </profile> |
396 |
| - <profile> |
397 |
| - <id>observation</id> |
398 |
| - <properties> |
399 |
| - <spring-boot.version>3.3.6</spring-boot.version> |
400 |
| - </properties> |
401 |
| - <dependencyManagement> |
402 |
| - <dependencies> |
403 |
| - <dependency> |
404 |
| - <groupId>org.springframework.boot</groupId> |
405 |
| - <artifactId>spring-boot-dependencies</artifactId> |
406 |
| - <type>pom</type> |
407 |
| - <scope>import</scope> |
408 |
| - <version>${spring-boot.version}</version> |
409 |
| - </dependency> |
410 |
| - </dependencies> |
411 |
| - </dependencyManagement> |
412 |
| - <dependencies> |
413 |
| - <dependency> |
414 |
| - <groupId>io.micrometer</groupId> |
415 |
| - <artifactId>micrometer-tracing-bridge-brave</artifactId> |
416 |
| - <version>1.3.4</version> |
417 |
| - <scope>test</scope> |
418 |
| - </dependency> |
419 |
| - <dependency> |
420 |
| - <groupId>org.springframework.boot</groupId> |
421 |
| - <artifactId>spring-boot-starter-web</artifactId> |
422 |
| - <scope>test</scope> |
423 |
| - </dependency> |
424 |
| - <dependency> |
425 |
| - <groupId>org.springframework.boot</groupId> |
426 |
| - <artifactId>spring-boot-starter-test</artifactId> |
427 |
| - <scope>test</scope> |
428 |
| - </dependency> |
429 |
| - <dependency> |
430 |
| - <groupId>org.springframework.boot</groupId> |
431 |
| - <artifactId>spring-boot-starter-actuator</artifactId> |
432 |
| - <scope>test</scope> |
433 |
| - </dependency> |
434 |
| - <dependency> |
435 |
| - <groupId>org.assertj</groupId> |
436 |
| - <artifactId>assertj-core</artifactId> |
437 |
| - <scope>test</scope> |
438 |
| - </dependency> |
439 |
| - </dependencies> |
440 |
| - <build> |
441 |
| - <plugins> |
442 |
| - <plugin> |
443 |
| - <groupId>org.apache.maven.plugins</groupId> |
444 |
| - <artifactId>maven-compiler-plugin</artifactId> |
445 |
| - <version>3.13.0</version> |
446 |
| - <configuration> |
447 |
| - <testExcludes> |
448 |
| - <exclude>**/wsdl/**/*</exclude> |
449 |
| - </testExcludes> |
450 |
| - <testIncludes> |
451 |
| - <include>**/ObservationInWsConfigurerTests.*</include> |
452 |
| - </testIncludes> |
453 |
| - </configuration> |
454 |
| - </plugin> |
455 |
| - <plugin> |
456 |
| - <groupId>org.apache.maven.plugins</groupId> |
457 |
| - <artifactId>maven-surefire-plugin</artifactId> |
458 |
| - <version>3.5.2</version> |
459 |
| - <configuration> |
460 |
| - <failIfNoTests>true</failIfNoTests> |
461 |
| - <systemProperties> |
462 |
| - <property> |
463 |
| - <name>spring-boot.run.profiles</name> |
464 |
| - <value>observation</value> |
465 |
| - </property> |
466 |
| - </systemProperties> |
467 |
| - <includes> |
468 |
| - <include>**/ObservationInWsConfigurerTests.java</include> |
469 |
| - </includes> |
470 |
| - </configuration> |
471 |
| - </plugin> |
472 |
| - </plugins> |
473 |
| - </build> |
474 |
| - </profile> |
475 | 366 | <profile>
|
476 | 367 | <id>docs</id>
|
477 | 368 |
|
|
0 commit comments