Skip to content

Commit

Permalink
Merge pull request #24 from SnuK87/fix/classloader-build-error
Browse files Browse the repository at this point in the history
Fix class loader issues
  • Loading branch information
SnuK87 authored Mar 12, 2023
2 parents dc558ad + 4cca61c commit e9c3f89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Simple module for [Keycloak](https://www.keycloak.org/) to produce keycloak even

Kafka version: `2.12-2.1.x`, `2.12-2.4.x`, `2.12-2.5.x`, `2.13-2.8`, `2.13-3.3.x`

Keycloak version: `19.0.x`
Keycloak version: `19.0.x, 21.0.x`

Java version: `11`, `17`
Java version: `17`

Check out [this older version](https://github.com/SnuK87/keycloak-kafka/tree/1.1.1) to run the module on a Wildfly server

Expand Down Expand Up @@ -47,7 +47,7 @@ The following properties can be set via environment variables (e.g. `${KAFKA_TOP

- `clientId` (env `KAFKA_CLIENT_ID`): The `client.id` used to identify the client in kafka.

- `bootstrapServer` (env `KAFKA_BOOTSTRAP_SERVERS`): A comma separated list of available brokers.
- `bootstrapServers` (env `KAFKA_BOOTSTRAP_SERVERS`): A comma separated list of available brokers.

- `events` (env `KAFKA_EVENTS`): The events that will be send to kafka.

Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.snuk87.keycloak</groupId>
<artifactId>keycloak-kafka</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<keycloak.version>20.0.3</keycloak.version>
<keycloak.version>21.0.1</keycloak.version>
<kafka.version>3.3.1</kafka.version>
<junit.version>5.8.1</junit.version>
</properties>
Expand All @@ -19,6 +19,7 @@
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
<version>${keycloak.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down

0 comments on commit e9c3f89

Please sign in to comment.