Open digger73 opened 1 week ago
Same issue. Also tried to build 24 release, didn't work.
ubuntu 24.04 java 21.0.1 maven 3.8.7
Got the same error with user-storage-jpa. Seems to be caused by some version mismatch with the recent upgrade to version 26.0.2. Keycloak-client still doesn't have version 26.0.2 so the pom.xml file uses version 999.0.0-SNAPSHOT which seems to be causing the issue
I manually changed the version numbers in pom.xml to 26.0.1 and I added a version number for jboss-logging. I also removed the quickstarts-test-helper dependency and I removed the ArquillianJpaStorageTest files and that seemed to fix it. This is a hacky solution for now and we need to wait till the team fixes the version numbers in the pom files.
There is probably a way to use 26.0.2 for everything except the client but I didn't try that option. The fix could be tried for user-storage-simple as well
To compound the build issues, keycloak-admin-client
was renamed to keycloak-admin-client-tests
.
https://github.com/keycloak/keycloak/commit/e5a4c94f75dce94fd7f7b11533d46636d94fcd34
Describe the bug
I succeeded in building the
extension/user-storage-simple
by runningmvn -Pextension clean compile
However, I get the following warnings:When trying to build the
extension/user-storage-simple
with the cmd in the readmemvn -Pextension clean install -DskipTests=true
I get same warning as above, but furthermore gets the below errors:Version
26.0.2
Expected behavior
Expectation is that using the cmd line described in the readme will compile the project as expected
Actual behavior
A build failure occurs when running the
mvn -Pextension clean install -DskipTests=true
according to the README in extension/user-storage-simpl.How to Reproduce?
Using: maven 3.9.9 Java 21.0.5 run the cmd
mvn -Pextension clean install -DskipTests=true
on the extension/user-storage-simpleAnything else?
No response