Skip to content

Commit

Permalink
Merge pull request #7 from focus-shift/keycloak_2601
Browse files Browse the repository at this point in the history
Keycloak 2601
  • Loading branch information
grafjo authored Nov 29, 2024
2 parents a9eb26a + 2e15f0c commit c3d5e27
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-version: 21
- name: Build
run: >
./mvnw $MAVEN_CLI_OPTS
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-version: 21
- name: Build with Maven
run: >
./mvnw $MAVEN_CLI_OPTS
Expand Down
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=17.0.11-tem
java=21.0.5-tem
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

<name>Keycloak: Event Publisher to RabbitMQ</name>
<properties>
<keycloak.version>25.0.6</keycloak.version>
<keycloak.version>26.0.1</keycloak.version>
<jar.finalName>${project.artifactId}-${project.version}</jar.finalName>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -53,7 +53,7 @@
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>5.21.0</version>
<version>5.23.0</version>
</dependency>

</dependencies>
Expand Down

0 comments on commit c3d5e27

Please sign in to comment.