|
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 |
|
4 | 5 | <!-- |
5 | 6 |
|
|
118 | 119 | <kotlin-coroutines>1.6.0</kotlin-coroutines> |
119 | 120 | <logback>1.2.5</logback> |
120 | 121 | <lombok>1.18.20</lombok> |
| 122 | + <micrometer>2.0.0-SNAPSHOT</micrometer> |
| 123 | + <micrometer-tracing>1.0.0-SNAPSHOT</micrometer-tracing> |
121 | 124 | <mockito>4.4.0</mockito> |
122 | 125 | <mockk>1.12.3</mockk> |
123 | 126 | <querydsl>5.0.0</querydsl> |
|
183 | 186 |
|
184 | 187 | <module name="io.spring.nohttp.checkstyle.check.NoHttpCheck"> |
185 | 188 | <!-- XML requires double escaping, config gets XML-processed twice --> |
186 | | - <property name="allowlist" value="http://www\.querydsl\.com.*&#10;http://www\.prowaveconsulting\.com.*&#10;http://www\.scispike\.com.*&#10;http://.*.icu-project\.org.*"/> |
| 189 | + <property name="allowlist" |
| 190 | + value="http://www\.querydsl\.com.*&#10;http://www\.prowaveconsulting\.com.*&#10;http://www\.scispike\.com.*&#10;http://.*.icu-project\.org.*"/> |
187 | 191 | </module> |
188 | 192 | </module> |
189 | 193 | </checkstyleRules> |
|
239 | 243 | <exclude>org.springframework.data:*</exclude> |
240 | 244 | </excludes> |
241 | 245 | </requireReleaseDeps> |
242 | | - <NoSnapshotDependenciesInDependencyManagementRule implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule"> |
| 246 | + <NoSnapshotDependenciesInDependencyManagementRule |
| 247 | + implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule"> |
243 | 248 | <onlyWhenRelease>true</onlyWhenRelease> |
244 | 249 | </NoSnapshotDependenciesInDependencyManagementRule> |
245 | 250 | </rules> |
|
403 | 408 | <copy failonerror="false" todir="${generated-asciidoc-sources.directory}/"> |
404 | 409 | <fileset dir="${project.root}/src/main/asciidoc" includes="**/*.adoc"/> |
405 | 410 | </copy> |
406 | | - <copy failonerror="false" todir="${generated-asciidoc-sources.directory}/images/"> |
| 411 | + <copy failonerror="false" |
| 412 | + todir="${generated-asciidoc-sources.directory}/images/"> |
407 | 413 | <fileset dir="${project.root}/src/main/asciidoc/images"/> |
408 | 414 | </copy> |
409 | 415 |
|
|
427 | 433 | <target> |
428 | 434 |
|
429 | 435 | <!-- Copy files for the single-file HTML version --> |
430 | | - <copy failonerror="false" todir="${project.root}/target/site/reference/html/images"> |
| 436 | + <copy failonerror="false" |
| 437 | + todir="${project.root}/target/site/reference/html/images"> |
431 | 438 | <fileset dir="${generated-docs.directory}/images"/> |
432 | 439 | </copy> |
433 | 440 |
|
|
451 | 458 | </copy> |
452 | 459 |
|
453 | 460 | <!-- Copy and rename the Epub file --> |
454 | | - <copy failonerror="false" file="${generated-docs.directory}/index.pdf" tofile="${project.root}/target/site/reference/pdf/${dist.id}-reference.pdf"/> |
| 461 | + <copy failonerror="false" file="${generated-docs.directory}/index.pdf" |
| 462 | + tofile="${project.root}/target/site/reference/pdf/${dist.id}-reference.pdf"/> |
455 | 463 |
|
456 | 464 | <!-- Copy and rename the PDF file --> |
457 | | - <copy failonerror="false" file="${generated-docs.directory}/index.epub" tofile="${project.root}/target/site/reference/epub/${dist.id}-reference.epub"/> |
| 465 | + <copy failonerror="false" file="${generated-docs.directory}/index.epub" |
| 466 | + tofile="${project.root}/target/site/reference/epub/${dist.id}-reference.epub"/> |
458 | 467 |
|
459 | 468 | </target> |
460 | 469 | </configuration> |
|
835 | 844 | <type>pom</type> |
836 | 845 | <scope>import</scope> |
837 | 846 | </dependency> |
| 847 | + <dependency> |
| 848 | + <groupId>io.micrometer</groupId> |
| 849 | + <artifactId>micrometer-bom</artifactId> |
| 850 | + <version>${micrometer}</version> |
| 851 | + <type>pom</type> |
| 852 | + <scope>import</scope> |
| 853 | + </dependency> |
| 854 | + <dependency> |
| 855 | + <groupId>io.micrometer</groupId> |
| 856 | + <artifactId>micrometer-tracing-bom</artifactId> |
| 857 | + <version>${micrometer-tracing}</version> |
| 858 | + <type>pom</type> |
| 859 | + <scope>import</scope> |
| 860 | + </dependency> |
838 | 861 | <dependency> |
839 | 862 | <groupId>org.springframework</groupId> |
840 | 863 | <artifactId>spring-framework-bom</artifactId> |
|
0 commit comments