Skip to content

Commit

Permalink
Merge pull request #7 from mattiaforc/dependabot/maven/keycloak.versi…
Browse files Browse the repository at this point in the history
…on-25.0.5

chore(deps): Bump keycloak.version from 21.0.0 to 25.0.5
  • Loading branch information
mattiaforc authored Sep 11, 2024
2 parents 518508e + 93c4db5 commit d66be52
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
keycloak-version: [ '21.0.0', '22.0.0', '23.0.0', '24.0.0' ] # List of Keycloak versions to test against
keycloak-version: [ '21.0.0', '22.0.0', '23.0.0', '24.0.0', '25.0.0' ] # List of Keycloak versions to test against
steps:
# Checkouts the repository
- name: Checkout repository
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ Each release workflow runs and builds the plugin against multiple keycloak versi
This is the compatibility matrix:

| plugin \ keycloak | v21 | v22 | v23 | v24 | v25 |
|-------------------|----|----|----|----|----|
| 0.1.0 ||||||
|-------------------|----|----|----|----|---|
| 0.1.0 ||||||
| 0.1.1 ||||||

## Installation

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<properties>
<java.version>17</java.version>
<keycloak.version>21.0.0</keycloak.version>
<keycloak.version>25.0.5</keycloak.version>

<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.jboss.logging.Logger;
import org.keycloak.events.Event;
import org.keycloak.events.EventListenerProvider;
import org.keycloak.events.admin.AdminEvent;
Expand All @@ -16,7 +15,7 @@
import java.net.URI;

public class FalcoEventListenerProvider implements EventListenerProvider {
private static final Log log = LogFactory.getLog(FalcoEventListenerProvider.class);
private static final Logger log = Logger.getLogger(FalcoEventListenerProvider.class);
private final CloseableHttpClient httpClient;
private final ObjectMapper objectMapper = new ObjectMapper();
private final FalcoEventListenerConfiguration configuration;
Expand Down

0 comments on commit d66be52

Please sign in to comment.