* [JAVA-1670] Upgraded JUnit and Maven Surefire Plugin in spring-boot-modules * Upgraded Maven Surefire Plugin version to 2.22.2 * Upgraded JUnit version to 5.6.2 * [JAVA-1670] Phasing upgrade - Inheriting form parent-boot-2 * Reverted JUnit version upgrade for now (will focus on parent/child relationships first) * Changed parent pom of spring-boot-modules to parent-boot-2 * Upgraded JUnit version to 5.6.2 in spring-boot-modules * [JAVA-1670] Phasing upgrade - Inheriting from spring-boot-modules instead of parent-boot-2 (first batch) * Changed spring-boot parent * Changed spring-boot-admin * Deleted exclusions in spring-boot * Changed spring-boot-angular * Changed spring-boot-annotations * Changed spring-boot-artifacts * Changed spring-boot-autoconfiguration * Changed spring-boot-basic-customization * Changed spring-boot-bootstrap * Changed spring-boot-client * Changed spring-boot-config-jpa-error * Changed spring-boot-ctx-fluent * Changed spring-boot-deployment * Changed spring-boot-di * Changed spring-boot-ci-cd * Changed spring-boot-custom-starter * Changed spring-boot-crud * Changed spring-boot-data * Changed spring-boot-environment * Changed spring-boot-exceptions * Changed spring-boot-flowable * Changed spring-boot-jasypt * Changed spring-boot-keycloak
85 lines
2.9 KiB
XML
85 lines
2.9 KiB
XML
<?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>com.baeldung.spring-boot-modules</groupId>
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
|
|
<groupId>com.baeldung.keycloak</groupId>
|
|
<artifactId>spring-boot-keycloak</artifactId>
|
|
<version>0.0.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>spring-boot-keycloak</name>
|
|
<description>This is a simple application demonstrating integration between Keycloak and Spring Boot.</description>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.keycloak.bom</groupId>
|
|
<artifactId>keycloak-adapter-bom</artifactId>
|
|
<version>${keycloak-adapter-bom.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.keycloak</groupId>
|
|
<artifactId>keycloak-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<keycloak-adapter-bom.version>10.0.1</keycloak-adapter-bom.version>
|
|
</properties>
|
|
|
|
</project>
|