|
7 | 7 | <parent> |
8 | 8 | <groupId>org.springframework.boot</groupId> |
9 | 9 | <artifactId>spring-boot-starter-parent</artifactId> |
10 | | - <version>3.5.3</version> |
| 10 | + <version>3.5.5</version> |
11 | 11 | </parent> |
12 | 12 |
|
13 | 13 | <groupId>de.gematik.refpopp</groupId> |
14 | 14 | <artifactId>popp-example-impl-global</artifactId> |
15 | | - <version>1.0.2</version> |
| 15 | + <version>1.0.3</version> |
16 | 16 | <packaging>pom</packaging> |
17 | 17 | <name>popp-sample-code</name> |
18 | 18 | <description>PoPP - example implementation</description> |
|
88 | 88 | <version.maven>3.8.6</version.maven> |
89 | 89 | <version.maven-clean-plugin>3.5.0</version.maven-clean-plugin> |
90 | 90 | <version.maven-compiler-plugin>3.14.0</version.maven-compiler-plugin> |
91 | | - <version.maven-enforcer-plugin>3.6.0</version.maven-enforcer-plugin> |
| 91 | + <version.maven-enforcer-plugin>3.6.1</version.maven-enforcer-plugin> |
92 | 92 | <version.maven-failsafe-plugin>3.5.3</version.maven-failsafe-plugin> |
93 | | - <version.maven-gpg-plugin>3.2.7</version.maven-gpg-plugin> |
| 93 | + <version.maven-gpg-plugin>3.2.8</version.maven-gpg-plugin> |
94 | 94 | <version.maven-javadoc-plugin>3.11.2</version.maven-javadoc-plugin> |
95 | 95 | <version.maven-project-info-reports-plugin>3.9.0</version.maven-project-info-reports-plugin> |
96 | 96 | <!-- only needed for mvn site to avoid stack traces flooding the console --> |
|
101 | 101 | <version.maven-surefire-plugin>3.5.3</version.maven-surefire-plugin> |
102 | 102 | <version.central-publishing-maven-plugin>0.8.0</version.central-publishing-maven-plugin> |
103 | 103 | <version.sonar-maven-plugin>5.1.0.4751</version.sonar-maven-plugin> |
104 | | - <version.spotless-maven-plugin>2.44.5</version.spotless-maven-plugin> |
| 104 | + <version.spotless-maven-plugin>2.46.1</version.spotless-maven-plugin> |
105 | 105 | <version.spotless.google-java-format>1.27.0</version.spotless.google-java-format> |
106 | 106 | <version.spring-boot-maven-plugin>3.3.2</version.spring-boot-maven-plugin> |
107 | 107 | </properties> |
|
165 | 165 | <dependency> |
166 | 166 | <groupId>commons-io</groupId> |
167 | 167 | <artifactId>commons-io</artifactId> |
168 | | - <version>2.19.0</version> |
| 168 | + <version>2.20.0</version> |
169 | 169 | </dependency> |
170 | 170 | <dependency> |
171 | 171 | <groupId>org.jacoco</groupId> |
|
349 | 349 | <style>GOOGLE</style> |
350 | 350 | <reflowLongStrings>true</reflowLongStrings> |
351 | 351 | </googleJavaFormat> |
| 352 | + |
| 353 | + # currently excluded to avoid issues with the test |
| 354 | + <excludes> |
| 355 | + <exclude>**/ConnectorCommunicationServiceTest.java</exclude> |
| 356 | + </excludes> |
| 357 | + |
| 358 | + <licenseHeader> |
| 359 | + <file>license-header.txt</file> |
| 360 | + <delimiter>package </delimiter> |
| 361 | + </licenseHeader> |
352 | 362 | </java> |
353 | 363 | <groovy> |
354 | 364 | <includes> |
|
365 | 375 | </excludes> |
366 | 376 | </markdown> |
367 | 377 | </configuration> |
| 378 | + <executions> |
| 379 | + <execution> |
| 380 | + <goals> |
| 381 | + <goal>apply</goal> |
| 382 | + </goals> |
| 383 | + <phase>compile</phase> |
| 384 | + </execution> |
| 385 | + </executions> |
368 | 386 | </plugin> |
369 | 387 | </plugins> |
370 | 388 | </build> |
|
0 commit comments