|
50 | 50 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
51 | 51 |
|
52 | 52 | <zip4j.version>2.11.5</zip4j.version> |
53 | | - <slf4j.version>1.7.36</slf4j.version> |
| 53 | + <slf4j.version>2.0.17</slf4j.version> |
54 | 54 |
|
55 | | - <poi.version>5.4.0</poi.version> |
| 55 | + <poi.version>5.4.1</poi.version> |
56 | 56 | <rtfparserkit.version>1.16.0</rtfparserkit.version> |
57 | | - <commons.io.version>2.18.0</commons.io.version> |
| 57 | + <commons.io.version>2.19.0</commons.io.version> |
58 | 58 | <commons-compress.version>1.27.1</commons-compress.version> |
59 | 59 | <opennlp-tools.version>1.9.3</opennlp-tools.version> |
60 | 60 |
|
61 | | - <pdfbox.version>2.0.32</pdfbox.version> |
| 61 | + <pdfbox.version>2.0.34</pdfbox.version> |
62 | 62 |
|
63 | 63 | <jaxb-api.version>4.0.2</jaxb-api.version> |
64 | 64 | <jaxb-core.version>4.0.5</jaxb-core.version> |
|
68 | 68 | <junit.version>5.11.4</junit.version> |
69 | 69 | <hamcrest.version>3.0</hamcrest.version> |
70 | 70 | <jmock-junit5.version>2.13.1</jmock-junit5.version> |
71 | | - <log4j.version>2.24.2</log4j.version> |
| 71 | + <log4j.version>2.24.3</log4j.version> |
72 | 72 |
|
73 | 73 | <!-- sonarcloud --> |
74 | 74 | <sonar.projectKey>levigo_filetype-analyzer</sonar.projectKey> |
|
85 | 85 | <artifactId>maven-compiler-plugin</artifactId> |
86 | 86 | <version>3.13.0</version> |
87 | 87 | <configuration> |
88 | | - <source>1.8</source> |
89 | | - <target>1.8</target> |
| 88 | + <source>17</source> |
| 89 | + <target>17</target> |
90 | 90 | </configuration> |
91 | 91 | </plugin> |
92 | 92 | <plugin> |
|
150 | 150 | <configuration> |
151 | 151 | <rules> |
152 | 152 | <requireMavenVersion> |
153 | | - <version>[3.8.8,)</version> |
| 153 | + <version>[3.9.3,)</version> |
154 | 154 | </requireMavenVersion> |
155 | 155 | <requireJavaVersion> |
156 | 156 | <!-- http://maven.apache.org/enforcer/enforcer-rules/versionRanges.html --> |
157 | | - <version>[1.8,20)</version> |
| 157 | + <version>[17,21)</version> |
158 | 158 | </requireJavaVersion> |
159 | 159 | <!-- <requirePluginVersions> <message>Best Practice is to |
160 | 160 | always define plugin versions!</message> <banLatest>true</banLatest> <banRelease>true</banRelease> |
|
172 | 172 | <rules> |
173 | 173 | <banCircularDependencies/> |
174 | 174 | <enforceBytecodeVersion> |
175 | | - <maxJdkVersion>20</maxJdkVersion> |
| 175 | + <maxJdkVersion>17</maxJdkVersion> |
176 | 176 | </enforceBytecodeVersion> |
177 | 177 | </rules> |
178 | 178 | </configuration> |
|
294 | 294 | </dependency> |
295 | 295 | <dependency> |
296 | 296 | <groupId>org.apache.logging.log4j</groupId> |
297 | | - <artifactId>log4j-slf4j-impl</artifactId> |
| 297 | + <artifactId>log4j-slf4j2-impl</artifactId> |
298 | 298 | <version>${log4j.version}</version> |
299 | 299 | <scope>test</scope> |
300 | 300 | </dependency> |
|
396 | 396 | </dependency> |
397 | 397 | </dependencies> |
398 | 398 |
|
399 | | - <distributionManagement> |
400 | | - <repository> |
401 | | - <id>maven2.releases.levigo.de</id> |
402 | | - <url>https://levigo.de/maven2/content/repositories/levigo-releases/</url> |
403 | | - </repository> |
404 | | - <snapshotRepository> |
405 | | - <id>maven2.snapshots.levigo.de</id> |
406 | | - <url>https://levigo.de/maven2/content/repositories/levigo-snapshots/</url> |
407 | | - </snapshotRepository> |
408 | | - </distributionManagement> |
409 | | - |
410 | 399 | <profiles> |
411 | 400 | <!-- Activate using the release property: mvn clean install -Prelease --> |
412 | 401 | <profile> |
|
421 | 410 | <plugins> |
422 | 411 | <!-- To release to Maven central --> |
423 | 412 | <plugin> |
424 | | - <groupId>org.sonatype.plugins</groupId> |
425 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
426 | | - <version>1.6.13</version> |
| 413 | + <groupId>org.sonatype.central</groupId> |
| 414 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 415 | + <version>0.7.0</version> |
427 | 416 | <extensions>true</extensions> |
428 | 417 | <configuration> |
429 | | - <serverId>ossrh</serverId> |
430 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
431 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 418 | + <publishingServerId>central</publishingServerId> |
| 419 | + <autoPublish>true</autoPublish> |
| 420 | + <waitUntil>uploaded</waitUntil> |
432 | 421 | </configuration> |
433 | 422 | </plugin> |
434 | 423 |
|
|
0 commit comments