keycloak-aplcache
Details
distribution/modules/build.xml 6(+6 -0)
diff --git a/distribution/modules/build.xml b/distribution/modules/build.xml
index 80ff507..3c87a2f 100755
--- a/distribution/modules/build.xml
+++ b/distribution/modules/build.xml
@@ -46,6 +46,12 @@
<maven-resource group="net.iharder" artifact="base64"/>
</module-def>
+ <module-def name="org.bouncycastle">
+ <maven-resource group="org.bouncycastle" artifact="bcprov-jdk15on"/>
+ <maven-resource group="org.bouncycastle" artifact="bcpkix-jdk15on"/>
+ <maven-resource group="org.bouncycastle" artifact="bcmail-jdk15on"/>
+ </module-def>
+
<module-def name="org.keycloak.keycloak-broker-core">
<maven-resource group="org.keycloak" artifact="keycloak-broker-core"/>
</module-def>
distribution/modules/pom.xml 6(+6 -0)
diff --git a/distribution/modules/pom.xml b/distribution/modules/pom.xml
index 9b69d37..aa14cb0 100755
--- a/distribution/modules/pom.xml
+++ b/distribution/modules/pom.xml
@@ -144,6 +144,12 @@
<groupId>org.jboss.aesh</groupId>
<artifactId>aesh</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcmail-jdk15on</artifactId>
+ </dependency>
+
</dependencies>
<build>
diff --git a/distribution/modules/src/main/resources/modules/org/bouncycastle/main/module.xml b/distribution/modules/src/main/resources/modules/org/bouncycastle/main/module.xml
new file mode 100644
index 0000000..c32565f
--- /dev/null
+++ b/distribution/modules/src/main/resources/modules/org/bouncycastle/main/module.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.1" name="org.bouncycastle">
+ <resources>
+ <resource-root path="bcprov-jdk15on-1.50.jar"/>
+ <resource-root path="bcmail-jdk15on-1.50.jar"/>
+ <resource-root path="bcpkix-jdk15on-1.50.jar"/>
+ </resources>
+ <dependencies>
+ <module name="javax.api"/>
+ </dependencies>
+
+</module>
\ No newline at end of file
diff --git a/examples/demo-template/README.md.unconfigured b/examples/demo-template/README.md.unconfigured
index 73279e0..2752997 100755
--- a/examples/demo-template/README.md.unconfigured
+++ b/examples/demo-template/README.md.unconfigured
@@ -129,7 +129,7 @@ Then edit `<WILDFLY HOME>/standalone/configuration/standalone.xml` and add the f
<secure-deployment name="product-portal.war">
<realm>demo</realm>
<resource>product-portal</resource>
- <credential name="secret">484ba263-8bb5-4048-bb6f-40da75e9eefb</credential>
+ <credential name="secret">APPLICATION SECRET</credential>
</secure-deployment>
In the above snippet replace the following: