keycloak-aplcache

Details

diff --git a/boms/adapter/pom.xml b/boms/adapter/pom.xml
index cd64fce..9f5554d 100644
--- a/boms/adapter/pom.xml
+++ b/boms/adapter/pom.xml
@@ -113,6 +113,11 @@
                 <artifactId>keycloak-spring-security-adapter</artifactId>
                 <version>${version.keycloak}</version>
             </dependency>
+            <dependency>
+               <groupId>org.keycloak</groupId>
+               <artifactId>keycloak-default-spring-boot-starter</artifactId>
+               <version>${version.keycloak}</version>
+           </dependency>
         </dependencies>
     </dependencyManagement>
 

misc/pom.xml 18(+18 -0)

diff --git a/misc/pom.xml b/misc/pom.xml
new file mode 100644
index 0000000..c5332d3
--- /dev/null
+++ b/misc/pom.xml
@@ -0,0 +1,18 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+        <artifactId>keycloak-parent</artifactId>
+        <groupId>org.keycloak</groupId>
+        <version>3.0.0.CR1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <name>Keycloak Misc</name>
+    <description/>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>keycloak-misc-parent</artifactId>
+    <packaging>pom</packaging>
+    <modules>
+        <module>spring-boot-starter</module>
+    </modules>
+</project>
diff --git a/misc/spring-boot-starter/keycloak-default-spring-boot-starter/pom.xml b/misc/spring-boot-starter/keycloak-default-spring-boot-starter/pom.xml
new file mode 100644
index 0000000..a4d9e75
--- /dev/null
+++ b/misc/spring-boot-starter/keycloak-default-spring-boot-starter/pom.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.keycloak</groupId>
+        <artifactId>keycloak-spring-boot-starter-parent</artifactId>
+        <version>3.0.0.CR1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>keycloak-default-spring-boot-starter</artifactId>
+    <name>Keycloak :: Spring :: Boot :: Default ::  Starter</name>
+    <description>Spring Boot Default Starter for Keycloak</description>
+
+    <dependencies>
+      <dependency>
+          <groupId>org.keycloak</groupId>
+          <artifactId>keycloak-spring-boot-adapter</artifactId>
+      </dependency>
+      <dependency>
+          <groupId>org.keycloak</groupId>
+          <artifactId>keycloak-tomcat8-adapter</artifactId>
+      </dependency>
+    </dependencies>
+</project>
diff --git a/misc/spring-boot-starter/pom.xml b/misc/spring-boot-starter/pom.xml
new file mode 100644
index 0000000..9aa7c0e
--- /dev/null
+++ b/misc/spring-boot-starter/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <artifactId>keycloak-misc-parent</artifactId>
+        <groupId>org.keycloak</groupId>
+        <version>3.0.0.CR1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <groupId>org.keycloak</groupId>
+    <artifactId>keycloak-spring-boot-starter-parent</artifactId>
+    <name>Keycloak :: Spring :: Boot</name>
+    <description>Support for using Keycloak in Spring Boot applications.</description>
+    <packaging>pom</packaging>
+    <modules>
+        <module>keycloak-default-spring-boot-starter</module>
+    </modules>
+    <dependencyManagement>
+      <dependencies>
+        <dependency>
+          <groupId>org.keycloak.bom</groupId>
+          <artifactId>keycloak-adapter-bom</artifactId>
+          <version>3.0.0.CR1-SNAPSHOT</version>
+          <type>pom</type>
+          <scope>import</scope>
+        </dependency>
+      </dependencies>
+    </dependencyManagement>
+</project>

pom.xml 1(+1 -0)

diff --git a/pom.xml b/pom.xml
index 687fbbc..1750040 100755
--- a/pom.xml
+++ b/pom.xml
@@ -192,6 +192,7 @@
         <module>authz</module>
         <module>examples</module>
         <module>testsuite</module>
+        <module>misc</module>
     </modules>
 
     <dependencyManagement>