Compare commits

...

4 commits

Author SHA1 Message Date
aa2e0f454d Update maven plugins
All checks were successful
/ Verify (pull_request) Successful in 1m8s
/ Verify (push) Successful in 1m10s
2026-04-04 23:09:33 +00:00
5ff157791a Update Keycloak packages to v26.5.7
All checks were successful
/ Verify (pull_request) Successful in 1m0s
/ Verify (push) Successful in 44s
2026-04-05 01:06:04 +02:00
75117dff1e Migrate config renovate.json
All checks were successful
/ Verify (pull_request) Successful in 1m9s
/ Verify (push) Successful in 48s
2026-04-03 22:02:08 +00:00
f09bb791bb
group keycloak package updates
All checks were successful
/ Verify (push) Successful in 49s
2026-04-03 23:43:56 +02:00
3 changed files with 21 additions and 10 deletions

View file

@ -17,7 +17,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>17</maven.compiler.target>
<keycloak.version>26.4.2</keycloak.version> <keycloak.version>26.5.7</keycloak.version>
</properties> </properties>
<dependencies> <dependencies>
@ -72,25 +72,25 @@
https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
<plugin> <plugin>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version> <version>3.5.0</version>
</plugin> </plugin>
<!-- default lifecycle, jar packaging: see <!-- default lifecycle, jar packaging: see
https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version> <version>3.5.0</version>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version> <version>3.15.0</version>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version> <version>2.22.2</version>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version> <version>3.5.0</version>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
@ -104,11 +104,11 @@
https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
<plugin> <plugin>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version> <version>3.21.0</version>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version> <version>3.9.0</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>

View file

@ -1,6 +1,6 @@
services: services:
keycloak: keycloak:
image: quay.io/keycloak/keycloak:26.5.3 image: quay.io/keycloak/keycloak:26.5.7
pull_policy: always pull_policy: always
command: "start-dev --features=declarative-ui" command: "start-dev --features=declarative-ui"
environment: environment:

View file

@ -8,7 +8,18 @@
{ {
"groupName": "maven plugins", "groupName": "maven plugins",
"groupSlug": "maven-plugins", "groupSlug": "maven-plugins",
"matchPackagePatterns": [ "org\\.apache\\.maven\\.plugins\\.*" ] "matchPackageNames": [
"/org\.apache\.maven\.plugins\.*/"
]
},
// Group Keycloak package updates.
{
"groupName": "Keycloak packages",
"groupSlug": "keycloak-packages",
"matchPackageNames": [
"/quay\.io/keycloak/keycloak/",
"/org\.keycloak:keycloak-parent/"
]
} }
] ]
} }