Skip to content

Commit 505c770

Browse files
committed
ee
1 parent 8d07847 commit 505c770

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

jakarta-ee-example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openliberty/open-liberty:21.0.0.9-kernel-slim-java11-openj9-ubi
1+
FROM icr.io/appcafe/open-liberty:kernel-slim-java21-openj9-ubi-minimal
22

33
COPY --chown=1001:0 src/main/liberty/config /config/
44

jakarta-ee-example/pom.xml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1717
<jakarta.jakartaee-api.version>8.0.0</jakarta.jakartaee-api.version>
1818
<microprofile.version>4.0.1</microprofile.version>
19-
<junit-jupiter.version>5.9.3</junit-jupiter.version>
19+
<junit-jupiter.version>5.11.2</junit-jupiter.version>
2020
<mockito-core.version>5.4.0</mockito-core.version>
21-
<microshed-testing.version>0.9.1</microshed-testing.version>
21+
<microshed-testing.version>0.9.2</microshed-testing.version>
2222
<testcontainers.version>1.19.0</testcontainers.version>
2323
<postgresql-jdbc-driver.version>42.2.16</postgresql-jdbc-driver.version>
2424
<mockserver-client-java.version>5.11.2</mockserver-client-java.version>
@@ -78,7 +78,13 @@
7878

7979
<dependency>
8080
<groupId>org.microshed</groupId>
81-
<artifactId>microshed-testing-liberty</artifactId>
81+
<artifactId>microshed-testing-core-jakarta</artifactId>
82+
<version>${microshed-testing.version}</version>
83+
<scope>test</scope>
84+
</dependency>
85+
<dependency>
86+
<groupId>org.microshed</groupId>
87+
<artifactId>microshed-testing-testcontainers</artifactId>
8288
<version>${microshed-testing.version}</version>
8389
<scope>test</scope>
8490
</dependency>
@@ -105,16 +111,16 @@
105111
<plugins>
106112
<plugin>
107113
<artifactId>maven-compiler-plugin</artifactId>
108-
<version>3.11.0</version>
114+
<version>3.13.0</version>
109115
</plugin>
110116
<plugin>
111117
<artifactId>maven-surefire-plugin</artifactId>
112-
<version>3.1.2</version>
118+
<version>3.5.2</version>
113119
</plugin>
114120
<plugin>
115121
<groupId>org.apache.maven.plugins</groupId>
116122
<artifactId>maven-failsafe-plugin</artifactId>
117-
<version>3.1.2</version>
123+
<version>3.5.2</version>
118124
<executions>
119125
<execution>
120126
<goals>
@@ -133,7 +139,7 @@
133139
<artifactId>liberty-maven-plugin</artifactId>
134140
<version>3.8.2</version>
135141
<configuration>
136-
<libertyRuntimeVersion>21.0.0.8</libertyRuntimeVersion>
142+
<libertyRuntimeVersion>24.0.0.1</libertyRuntimeVersion>
137143
<serverStartTimeout>60</serverStartTimeout>
138144
</configuration>
139145
</plugin>

0 commit comments

Comments
 (0)