Skip to content

Commit 86a05e1

Browse files
committed
Update dependencies
1 parent 4a1bf59 commit 86a05e1

3 files changed

Lines changed: 22 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
sftp_inbox:
1313
strategy:
1414
matrix:
15-
java-version: [19]
15+
java-version: [25]
1616
fail-fast: true
1717
runs-on: ubuntu-latest
1818

@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up JDK ${{ matrix.java-version }}
2222
uses: actions/setup-java@v5
2323
with:
24-
distribution: zulu
24+
distribution: temurin
2525
java-version: ${{ matrix.java-version }}
2626
- uses: actions/cache@v4
2727
with:

sda-sftp-inbox/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3-eclipse-temurin-22-alpine as builder
1+
FROM maven:3.9.11-eclipse-temurin-25-alpine as builder
22

33
COPY pom.xml .
44

@@ -8,7 +8,7 @@ COPY src/ /src/
88

99
RUN mvn clean install -DskipTests --no-transfer-progress
1010

11-
FROM eclipse-temurin:21-alpine
11+
FROM eclipse-temurin-25-alpine
1212

1313
RUN apk add --no-cache --upgrade ca-certificates java-cacerts libssl3 libcrypto3 \
1414
&& ln -sf /etc/ssl/certs/java/cacerts $JAVA_HOME/lib/security/cacerts

sda-sftp-inbox/pom.xml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.5.5</version>
17+
<version>3.5.7</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

2121
<properties>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24-
<java.version>19</java.version>
24+
<java.version>25</java.version>
25+
<lombok.version>1.18.42</lombok.version>
2526
</properties>
2627

2728
<dependencyManagement>
@@ -90,11 +91,6 @@
9091
<groupId>org.codehaus.janino</groupId>
9192
<artifactId>janino</artifactId>
9293
</dependency>
93-
<dependency>
94-
<groupId>org.apache.mina</groupId>
95-
<artifactId>mina-core</artifactId>
96-
<version>3.0.0-M2</version>
97-
</dependency>
9894
<dependency>
9995
<groupId>org.apache.sshd</groupId>
10096
<artifactId>sshd-sftp</artifactId>
@@ -134,7 +130,7 @@
134130
<dependency>
135131
<groupId>org.projectlombok</groupId>
136132
<artifactId>lombok</artifactId>
137-
<optional>true</optional>
133+
<version>${lombok.version}</version>
138134
</dependency>
139135
<dependency>
140136
<groupId>org.springframework.boot</groupId>
@@ -182,6 +178,20 @@
182178
<groupId>org.springframework.boot</groupId>
183179
<artifactId>spring-boot-maven-plugin</artifactId>
184180
</plugin>
181+
<plugin>
182+
<groupId>org.apache.maven.plugins</groupId>
183+
<artifactId>maven-compiler-plugin</artifactId>
184+
<version>3.13.0</version>
185+
<configuration>
186+
<annotationProcessorPaths>
187+
<path>
188+
<groupId>org.projectlombok</groupId>
189+
<artifactId>lombok</artifactId>
190+
<version>${lombok.version}</version>
191+
</path>
192+
</annotationProcessorPaths>
193+
</configuration>
194+
</plugin>
185195
<plugin>
186196
<artifactId>maven-surefire-plugin</artifactId>
187197
<version>3.5.3</version>

0 commit comments

Comments
 (0)