diff --git a/distribution/adapters/osgi/features/src/main/resources/features.xml b/distribution/adapters/osgi/features/src/main/resources/features.xml
index b61c752199..e5efc8d7ed 100755
--- a/distribution/adapters/osgi/features/src/main/resources/features.xml
+++ b/distribution/adapters/osgi/features/src/main/resources/features.xml
@@ -24,8 +24,10 @@
mvn:org.bouncycastle/bcprov-jdk15on/${bouncycastle.crypto.version}
mvn:org.bouncycastle/bcpkix-jdk15on/${bouncycastle.crypto.version}
mvn:com.fasterxml.jackson.core/jackson-core/${jackson.version}
+ mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson.version}
mvn:com.fasterxml.jackson.core/jackson-databind/${jackson.version}
mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/${jackson.version}
+ mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${jackson.version}
mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${jackson.version}
mvn:org.jboss.logging/jboss-logging/${jboss.logging.version}
mvn:org.keycloak/keycloak-common/${project.version}
diff --git a/distribution/downloads/pom.xml b/distribution/downloads/pom.xml
index 946107532c..aa7af2a3e3 100755
--- a/distribution/downloads/pom.xml
+++ b/distribution/downloads/pom.xml
@@ -93,19 +93,6 @@
keycloak-overlay-${project.version}.tar.gz
-
- org.keycloak
- keycloak-server-overlay-eap6
- zip
- keycloak-overlay-eap6-${project.version}.zip
-
-
- org.keycloak
- keycloak-server-overlay-eap6
- tar.gz
- keycloak-overlay-eap6-${project.version}.tar.gz
-
-
org.keycloak
keycloak-proxy-dist
diff --git a/examples/fuse/cxf-jaxrs/pom.xml b/examples/fuse/cxf-jaxrs/pom.xml
index 237cdaea4e..a2de8267af 100755
--- a/examples/fuse/cxf-jaxrs/pom.xml
+++ b/examples/fuse/cxf-jaxrs/pom.xml
@@ -39,7 +39,7 @@
META-INF.cxf.osgi;version="[2.7,3.2)";resolution:=optional,
org.apache.cxf.transport.http;version="[2.7,3.2)",
org.apache.cxf.*;version="[2.7,3.2)",
- com.fasterxml.jackson.jaxrs;version="${jackson.version}",
+ com.fasterxml.jackson.jaxrs.json;version="${jackson.version}",
org.keycloak.adapters.jetty;version="${project.version}",
org.keycloak.adapters;version="${project.version}",
*
diff --git a/examples/fuse/features/src/main/resources/features.xml b/examples/fuse/features/src/main/resources/features.xml
index ffe95de15d..c838b02bfd 100644
--- a/examples/fuse/features/src/main/resources/features.xml
+++ b/examples/fuse/features/src/main/resources/features.xml
@@ -26,6 +26,7 @@
cxf
keycloak
mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${jackson.version}
+ mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${jackson.version}
mvn:org.keycloak.example.demo/product-portal-fuse-example/${project.version}
mvn:org.keycloak.example.demo/customer-portal-fuse-example/${project.version}/war
mvn:org.keycloak.example.demo/camel-endpoint-example/${project.version}
diff --git a/examples/providers/authenticator/README.md b/examples/providers/authenticator/README.md
index f9eafccdfb..833e5c96c4 100755
--- a/examples/providers/authenticator/README.md
+++ b/examples/providers/authenticator/README.md
@@ -4,7 +4,7 @@ Example User Federation Provider
This is an example of defining a custom Authenticator and Required action. This example is explained in the user documentation
of Keycloak. To deploy, build this directory then take the jar and copy it to standalone/configuration/providers. Alternatively you can deploy as a module by running:
- KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.secret-question --resources=target/authenticator-required-action-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-model-api,org.keycloak.keycloak-login-api,org.keycloak.keycloak-services,org.jboss.resteasy.resteasy-jaxrs,javax.ws.rs.api"
+ KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.secret-question --resources=target/authenticator-required-action-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi,org.keycloak.keycloak-services,org.jboss.resteasy.resteasy-jaxrs,javax.ws.rs.api"
Then registering the provider by editing keycloak-server.json and adding the module to the providers field:
@@ -21,7 +21,7 @@ the admin console to create a new flow with your new authenticator.
If you go to the Authentication menu item and go to the Flow tab, you will be able to view the currently
defined flows. You cannot modify an built in flows, so, to add the Authenticator you
-have to copy an existing flow or create your own.
+have to copy an existing flow or create your own.
Next you have to register your required action.
Click on the Required Actions tab. Click on the Register button and choose your new Required Action.
@@ -29,4 +29,4 @@ Your new required action should now be displayed and enabled in the required act
I'm hoping the UI is intuitive enough so that you
can figure out for yourself how to create a flow and add the Authenticator and Required Action. We're looking to add a screencast
-to show this in action.
+to show this in action.
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 8159837a0c..6dee32d50e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -285,7 +285,7 @@
com.fasterxml.jackson.module
- jaxb-annotations
+ jackson-module-jaxb-annotations
${jackson.version}