Skip to content

Commit d45e369

Browse files
authored
Merge pull request #49 from ArielMAJ/release/1.0.1
Release/1.0.1
2 parents 0804b5f + ddf1069 commit d45e369

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# --- Build stage ---
2-
FROM maven:3.9.15-amazoncorretto-21-alpine AS builder
2+
FROM maven:3.9.15-amazoncorretto-25-alpine AS builder
33

44
WORKDIR /build
55

@@ -8,7 +8,7 @@ COPY src ./src
88
RUN mvn package -DskipTests -B
99

1010
# --- Runtime stage ---
11-
FROM eclipse-temurin:21-jre-alpine
11+
FROM eclipse-temurin:25-jre-alpine
1212

1313
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
1414

pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.0</version>
9+
<version>3.4.13</version>
1010
<relativePath />
1111
</parent>
1212
<groupId>tech.artadevs</groupId>
1313
<artifactId>Finances</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
14+
<version>1.0.1-SNAPSHOT</version>
1515
<name>Finances</name>
1616
<description>A finance manager backend in Java - Springboot.</description>
1717
<url />
@@ -28,7 +28,8 @@
2828
<url />
2929
</scm>
3030
<properties>
31-
<java.version>21</java.version>
31+
<java.version>25</java.version>
32+
<byte-buddy.version>1.15.11</byte-buddy.version>
3233
</properties>
3334
<dependencies>
3435
<dependency>
@@ -130,7 +131,7 @@
130131
<plugin>
131132
<groupId>org.jacoco</groupId>
132133
<artifactId>jacoco-maven-plugin</artifactId>
133-
<version>0.8.10</version>
134+
<version>0.8.14</version>
134135
<executions>
135136
<execution>
136137
<goals>
@@ -150,6 +151,9 @@
150151
<groupId>org.apache.maven.plugins</groupId>
151152
<artifactId>maven-surefire-plugin</artifactId>
152153
<version>2.22.0</version>
154+
<configuration>
155+
<argLine>@{argLine} -Dnet.bytebuddy.experimental=true</argLine>
156+
</configuration>
153157
</plugin>
154158
</plugins>
155159
</build>

0 commit comments

Comments
 (0)