Skip to content

Commit

Permalink
update dependencies and java 23
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki-Afro committed Dec 20, 2024
1 parent 0ef8779 commit 6d36a50
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
<version>2.6-SNAPSHOT</version>
<properties>
<compiler-plugin.version>3.13.0</compiler-plugin.version>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.release>23</maven.compiler.release>
<quarkus.native.builder-image>quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-23</quarkus.native.builder-image>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.14.4</quarkus.platform.version>
<quarkus.platform.version>3.17.4</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.4.0</surefire-plugin.version>
<testcontainers.version>1.20.1</testcontainers.version>
<testcontainers.version>1.20.4</testcontainers.version>
<maven.compiler.proc>full</maven.compiler.proc>
</properties>
<dependencyManagement>
<dependencies>
Expand All @@ -32,7 +34,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<version>1.18.36</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
6 changes: 6 additions & 0 deletions src/test/java/de/svs/NamespaceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import io.quarkus.test.common.WithTestResource;
import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import java.time.Instant;
Expand All @@ -14,6 +15,11 @@
@WithTestResource(QuarkusMongoDbTestResource.ContainerResource.class)
class NamespaceTest {

@BeforeEach
public void beforeEach() {
Namespace.deleteAll();
}

@Test
public void shouldNotBeFoundByNameTest() {
persistNamespace("buh");
Expand Down

0 comments on commit 6d36a50

Please sign in to comment.