keycloak-uncached
Changes
project-integrations/README.md 9(+8 -1)
Details
diff --git a/project-integrations/aerogear-ups/app/pom.xml b/project-integrations/aerogear-ups/app/pom.xml
index 2bf361c..eb42ab7 100755
--- a/project-integrations/aerogear-ups/app/pom.xml
+++ b/project-integrations/aerogear-ups/app/pom.xml
@@ -35,11 +35,6 @@
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.keycloak</groupId>
- <artifactId>keycloak-as7-adapter</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
<groupId>net.iharder</groupId>
<artifactId>base64</artifactId>
</dependency>
@@ -119,4 +114,31 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>as7</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.keycloak</groupId>
+ <artifactId>keycloak-as7-adapter</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>wildfly</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.keycloak</groupId>
+ <artifactId>keycloak-wildfly-adapter</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
</project>
diff --git a/project-integrations/aerogear-ups/app/src/main/webapp/WEB-INF/web.xml b/project-integrations/aerogear-ups/app/src/main/webapp/WEB-INF/web.xml
index 23e2831..77b633e 100755
--- a/project-integrations/aerogear-ups/app/src/main/webapp/WEB-INF/web.xml
+++ b/project-integrations/aerogear-ups/app/src/main/webapp/WEB-INF/web.xml
@@ -41,8 +41,8 @@
-->
</security-constraint>
- <login-config>
- <auth-method>BASIC</auth-method>
+ <login-config>
+ <auth-method>KEYCLOAK</auth-method>
<realm-name>demo</realm-name>
</login-config>
project-integrations/README.md 9(+8 -1)
diff --git a/project-integrations/README.md b/project-integrations/README.md
index f9299b2..3811ba7 100644
--- a/project-integrations/README.md
+++ b/project-integrations/README.md
@@ -2,4 +2,11 @@ Keycloak External Project Integrations
==========
Everthing in this directory is examples related to integration with non-keycloak projects. Its a sandbox we use to test integrations with third-party projects
-
\ No newline at end of file
+
+To deploy to AS7 run:
+
+# mvn clean install jboss-as:deploy
+
+To deploy to WildFly run:
+
+# mvn -Pwildfly clean install wildfly:deploy