Skip to content

Commit

Permalink
update to 23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasniko committed Nov 23, 2023
1 parent 2aad39d commit 8c0aa0e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A [Testcontainers](https://www.testcontainers.org/) implementation for [Keycloak
![](https://img.shields.io/github/v/release/dasniko/testcontainers-keycloak?label=Release)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.dasniko/testcontainers-keycloak.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.dasniko%22%20AND%20a:%22testcontainers-keycloak%22)
![](https://img.shields.io/github/license/dasniko/testcontainers-keycloak?label=License)
![](https://img.shields.io/badge/Keycloak-22.0.5-blue)
![](https://img.shields.io/badge/Keycloak-23.0-blue)

## IMPORTANT!!!

Expand Down Expand Up @@ -34,7 +34,7 @@ Use another Keycloak Docker image/version than used in this Testcontainer:

```java
@Container
KeycloakContainer keycloak = new KeycloakContainer("quay.io/keycloak/keycloak:22.0");
KeycloakContainer keycloak = new KeycloakContainer("quay.io/keycloak/keycloak:23.0");
```

### Realm Import
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@
</distributionManagement>

<properties>
<junit-jupiter.version>5.9.3</junit-jupiter.version>
<keycloak.version>22.0.5</keycloak.version>
<logback.version>1.4.8</logback.version>
<junit-jupiter.version>5.10.1</junit-jupiter.version>
<keycloak.version>23.0.0</keycloak.version>
<logback.version>1.4.11</logback.version>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<quarkus.version>3.2.0.Final</quarkus.version>
<rest-assured.version>5.3.1</rest-assured.version>
<rest-assured.version>5.3.2</rest-assured.version>
<shrinkwrap.version>1.2.6</shrinkwrap.version>
<shrinkwrap-resolver.version>3.2.0</shrinkwrap-resolver.version>
<slf4j.version>2.0.7</slf4j.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.3</testcontainers.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public abstract class ExtendableKeycloakContainer<SELF extends ExtendableKeycloa
public static final String ADMIN_CLI_CLIENT = "admin-cli";

private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak";
private static final String KEYCLOAK_VERSION = "22.0.5";
private static final String KEYCLOAK_VERSION = "23.0";

private static final int KEYCLOAK_PORT_HTTP = 8080;
private static final int KEYCLOAK_PORT_HTTPS = 8443;
Expand Down Expand Up @@ -114,7 +114,7 @@ public ExtendableKeycloakContainer() {
/**
* Create a KeycloakContainer by passing the full docker image name
*
* @param dockerImageName Full docker image name, e.g. quay.io/keycloak/keycloak:22.0
* @param dockerImageName Full docker image name, e.g. quay.io/keycloak/keycloak:23.0
*/
public ExtendableKeycloakContainer(String dockerImageName) {
super(dockerImageName);
Expand Down

0 comments on commit 8c0aa0e

Please sign in to comment.