In my quarkus application.properties i want to start the keycloak dev services on a pre determend Port
quarkus.keycloak.devservices.port=8180
quarkus.keycloak.admin-client.server-url=http://localhost:8180
this works perfectly fine but when i want to add the oidc.auth-server-url like this
quarkus.keycloak.devservices.port=8180
quarkus.keycloak.admin-client.server-url=http://localhost:8180
quarkus.keycloak.devservices.realm-path=quarkus-realm.json
quarkus.oidc.auth-server-url=http://localhost:8180/realms/quarkus
quarkus.oidc.client-id=frontend
quarkus.oidc.credentials.secret=secret
quarkus.oidc.application-type=web-app
it wont start at all Note: it starts no problems with the other options besides oidc.auth-server-url and it wont even if there is just the dev port decleration and the oidc.auth-server-url.
Any Ideas?? it wont start at all Note: it starts no problems with the other options besides oidc.auth-server-url and it wont even if there is just the dev port decleration and the oidc.auth-server-url.
Any Ideas??