Skip to content

Commit

Permalink
prepare for KC 16.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasniko committed Dec 16, 2021
1 parent 7b07295 commit 40574a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 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-15.0.2-blue)
![](https://img.shields.io/badge/Keycloak-16.0.0-blue)

## Keycloak-X compatibility --- IMPORTANT!!!

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

```java
@Container
private KeycloakContainer keycloak = new KeycloakContainer("jboss/keycloak:15.0.2");
private KeycloakContainer keycloak = new KeycloakContainer("jboss/keycloak:16.0.0");
```

Power up a Keycloak instance with one ore more existing realm JSON config files (from classpath):
Expand Down Expand Up @@ -207,7 +207,7 @@ Consult the docs of your application framework testing capabilities on how to dy
|1.7.0 |1.15.3 |13.0.0
|1.7.1 |1.15.3 |13.0.1
|1.8.0 |1.15.3 |15.0.2
|1.9.0 |1.16.2 |15.1.0
|1.9.0 |1.16.2 |16.0.0

_There might also be other possible version configurations which will work._

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<testcontainers.version>1.16.2</testcontainers.version>
<keycloak.version>15.0.2</keycloak.version>
<keycloak.version>16.0.0</keycloak.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public class KeycloakContainer extends GenericContainer<KeycloakContainer> {

private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak";
private static final String KEYCLOAK_VERSION = "15.1.0";
private static final String KEYCLOAK_VERSION = "16.0.0";

private static final int KEYCLOAK_PORT_HTTP = 8080;
private static final int KEYCLOAK_PORT_HTTPS = 8443;
Expand Down

0 comments on commit 40574a0

Please sign in to comment.