Skip to content

Commit e109f4e

Browse files
committed
feat: update dependencies and lang-level to 17
1 parent e0a4d68 commit e109f4e

File tree

2 files changed

+17
-28
lines changed

2 files changed

+17
-28
lines changed

.github/workflows/continuous-delivery.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ jobs:
8080
## Deploy
8181
- name: Deploy package
8282
env:
83-
GPG_EXECUTABLE: gpg
84-
GPG_SECRET_KEYS: ${{ secrets.LEVIGO_GPG_KEYS }}
85-
GPG_OWNERTRUST: ${{ secrets.LEVIGO_GPG_OWNERTRUST }}
86-
GPG_PASSPHRASE: ${{ secrets.LEVIGO_GPG_PASSPHRASE }}
87-
SONATYPE_USERNAME: ${{ secrets.LEVIGO_SONATYPE_USERNAME }}
88-
SONATYPE_PASSWORD: ${{ secrets.LEVIGO_SONATYPE_PASSWORD }}
83+
GPG_EXECUTABLE: gpg
84+
GPG_SECRET_KEYS: ${{ secrets.LEVIGO_GPG_KEYS }}
85+
GPG_OWNERTRUST: ${{ secrets.LEVIGO_GPG_OWNERTRUST }}
86+
GPG_PASSPHRASE: ${{ secrets.LEVIGO_GPG_PASSPHRASE }}
87+
SONATYPE_USERNAME: ${{ secrets.LEVIGO_SONATYPE_USERNAME }}
88+
SONATYPE_PASSWORD: ${{ secrets.LEVIGO_SONATYPE_PASSWORD }}
8989
run: |
9090
echo "$GPG_SECRET_KEYS" | base64 --decode | $GPG_EXECUTABLE --import --no-tty --batch --yes
9191
echo "$GPG_OWNERTRUST" | base64 --decode | $GPG_EXECUTABLE --import-ownertrust --no-tty --batch --yes

pom.xml

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@
5050
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5151

5252
<zip4j.version>2.11.5</zip4j.version>
53-
<slf4j.version>1.7.36</slf4j.version>
53+
<slf4j.version>2.0.17</slf4j.version>
5454

55-
<poi.version>5.4.0</poi.version>
55+
<poi.version>5.4.1</poi.version>
5656
<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>
5858
<commons-compress.version>1.27.1</commons-compress.version>
5959
<opennlp-tools.version>1.9.3</opennlp-tools.version>
6060

61-
<pdfbox.version>2.0.32</pdfbox.version>
61+
<pdfbox.version>2.0.34</pdfbox.version>
6262

6363
<jaxb-api.version>4.0.2</jaxb-api.version>
6464
<jaxb-core.version>4.0.5</jaxb-core.version>
@@ -68,7 +68,7 @@
6868
<junit.version>5.11.4</junit.version>
6969
<hamcrest.version>3.0</hamcrest.version>
7070
<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>
7272

7373
<!-- sonarcloud -->
7474
<sonar.projectKey>levigo_filetype-analyzer</sonar.projectKey>
@@ -85,8 +85,8 @@
8585
<artifactId>maven-compiler-plugin</artifactId>
8686
<version>3.13.0</version>
8787
<configuration>
88-
<source>1.8</source>
89-
<target>1.8</target>
88+
<source>17</source>
89+
<target>17</target>
9090
</configuration>
9191
</plugin>
9292
<plugin>
@@ -150,11 +150,11 @@
150150
<configuration>
151151
<rules>
152152
<requireMavenVersion>
153-
<version>[3.8.8,)</version>
153+
<version>[3.9.3,)</version>
154154
</requireMavenVersion>
155155
<requireJavaVersion>
156156
<!-- http://maven.apache.org/enforcer/enforcer-rules/versionRanges.html -->
157-
<version>[1.8,20)</version>
157+
<version>[17,21)</version>
158158
</requireJavaVersion>
159159
<!-- <requirePluginVersions> <message>Best Practice is to
160160
always define plugin versions!</message> <banLatest>true</banLatest> <banRelease>true</banRelease>
@@ -172,7 +172,7 @@
172172
<rules>
173173
<banCircularDependencies/>
174174
<enforceBytecodeVersion>
175-
<maxJdkVersion>20</maxJdkVersion>
175+
<maxJdkVersion>17</maxJdkVersion>
176176
</enforceBytecodeVersion>
177177
</rules>
178178
</configuration>
@@ -294,7 +294,7 @@
294294
</dependency>
295295
<dependency>
296296
<groupId>org.apache.logging.log4j</groupId>
297-
<artifactId>log4j-slf4j-impl</artifactId>
297+
<artifactId>log4j-slf4j2-impl</artifactId>
298298
<version>${log4j.version}</version>
299299
<scope>test</scope>
300300
</dependency>
@@ -396,17 +396,6 @@
396396
</dependency>
397397
</dependencies>
398398

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-
410399
<profiles>
411400
<!-- Activate using the release property: mvn clean install -Prelease -->
412401
<profile>

0 commit comments

Comments
 (0)