keycloak-aplcache
Merge pull request #3865 from sebastienblanc/2.5.x-springboot-starter KEYCLOAK-4423 …
Changes
boms/adapter/pom.xml 5(+5 -0)
misc/pom.xml 18(+18 -0)
misc/spring-boot-starter/pom.xml 30(+30 -0)
pom.xml 1(+1 -0)
Details
boms/adapter/pom.xml 5(+5 -0)
diff --git a/boms/adapter/pom.xml b/boms/adapter/pom.xml
index a63097f..f2bb2bb 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..ef5288e
--- /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>2.5.4.Final-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..ddc415d
--- /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>2.5.4.Final-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>
misc/spring-boot-starter/pom.xml 30(+30 -0)
diff --git a/misc/spring-boot-starter/pom.xml b/misc/spring-boot-starter/pom.xml
new file mode 100644
index 0000000..2a78d93
--- /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>2.5.4.Final-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>2.5.4.Final-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>