Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pooriamehregan committed Jan 30, 2024
1 parent 065f769 commit a0997bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:19-slim
FROM openjdk:21-slim

ENV TZ=Europe/Oslo
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
</parent>

<properties>
<java.release>19</java.release>
<java.release>21</java.release>
<java.encoding>UTF-8</java.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>${java.release}</maven.compiler.source>
<maven.compiler.target>${java.release}</maven.compiler.target>
<maven.exec.skip>false</maven.exec.skip>

<kotlin.version>1.9.10</kotlin.version>
<kotlin.version>1.9.22</kotlin.version>
<testcontainers.version>1.19.0</testcontainers.version>
<jena.version>4.9.0</jena.version>
</properties>
Expand Down Expand Up @@ -136,10 +136,9 @@
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>3.0.2</version>
<version>3.0.3</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down Expand Up @@ -264,6 +263,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<argLine>${surefire.jacoco.args}</argLine>
<groups>unit</groups>
<excludedGroups>integration</excludedGroups>
Expand All @@ -277,6 +277,7 @@
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<argLine>${failsafe.jacoco.args}</argLine>
<groups>integration</groups>
<excludedGroups>unit</excludedGroups>
Expand Down

0 comments on commit a0997bb

Please sign in to comment.