Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump keycloak dependency to 22.0.0 #41

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
##### A Keycloak SPI plugin that publishes events to a RabbitMq server.

| Plugin | min Keycloak ver |
| -- | ---- |
| 1.x | 10.x |
| 2.x | 13.x |
| 3.x | 16.x |
|--------|------------------|
| 1.x | 10.x |
| 2.x | 13.x |
| 3.x | 16.x |
| 4.x | 22.x |

For example here is the notification of the user updated by administrator

Expand Down
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
<groupId>com.github.aznamier.keycloak.event.provider</groupId>
<artifactId>keycloak-to-rabbit</artifactId>
<packaging>jar</packaging>
<version>3.0.3</version>
<version>4.0.0</version>



<name>Keycloak: Event Publisher to RabbitMQ</name>
<properties>
<keycloak.version>21.1.2</keycloak.version>
<keycloak.version>22.0.0</keycloak.version>
<jar.finalName>${project.artifactId}-${project.version}</jar.finalName>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<distributionManagement>
Expand Down Expand Up @@ -73,10 +75,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<version>3.11.0</version>
</plugin>

<!-- Maven Assembly Plugin -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import java.io.Serializable;

import javax.xml.bind.annotation.XmlRootElement;

import jakarta.xml.bind.annotation.XmlRootElement;
import org.keycloak.events.admin.AdminEvent;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import java.io.Serializable;

import javax.xml.bind.annotation.XmlRootElement;

import jakarta.xml.bind.annotation.XmlRootElement;
import org.keycloak.events.Event;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
Expand Down