Skip to content

Commit

Permalink
Enable KeycloakServer again by re-enabling undertow adapters
Browse files Browse the repository at this point in the history
---
Quarkus3 branch sync Cracky5457#2 (20.1.2023)
Resolved conflicts:
keycloak/testsuite/utils/pom.xml - Modified
  • Loading branch information
sguilhen authored and vmuzikar committed Apr 27, 2023
1 parent 40c38e0 commit ab6ca6e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions adapters/oidc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
<module>spring-boot-adapter-core</module>
<module>spring-boot-container-bundle</module>
<module>spring-security</module>
<module>tomcat</module>
<module>tomcat</module> -->
<module>undertow</module>
<module>wildfly</module>
<!-- <module>wildfly</module>
<module>wildfly-elytron</module>-->
</modules>
</project>
4 changes: 2 additions & 2 deletions adapters/saml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<module>core-public</module>
<module>core</module>
<!--<module>jetty</module>-->
<!--<module>undertow</module>
<module>tomcat</module>-->
<module>undertow</module>
<!-- <module>tomcat</module>-->
<module>wildfly</module>
<module>servlet-filter</module>
<module>jakarta-servlet-filter</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
// Generated on: 2008.12.08 at 05:45:20 PM CST
//

@javax.xml.bind.annotation.XmlSchema(namespace = "urn:oasis:names:tc:SAML:2.0:ac", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.keycloak.dom.saml.v2.ac;
@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:oasis:names:tc:SAML:2.0:ac", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.keycloak.dom.saml.v2.ac;

10 changes: 8 additions & 2 deletions testsuite/utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-admin-client</artifactId>
<artifactId>keycloak-admin-client-jakarta</artifactId>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
Expand Down Expand Up @@ -116,6 +116,12 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-undertow</artifactId>
<exclusions>
<exclusion>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet-jakarta</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
Expand Down Expand Up @@ -222,7 +228,7 @@
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<artifactId>infinispan-core-jakarta</artifactId>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
Expand Down

0 comments on commit ab6ca6e

Please sign in to comment.