BAEL-10887 Let's fix the compilation issue in spring-cloud/spring-cloud-security/auth-client module

- Added the missing dependencies that were causing compilation issues
This commit is contained in:
Dhawal Kapil 2018-12-09 16:39:10 +05:30
parent a21f82001c
commit 258b7e1bb3
2 changed files with 12 additions and 8 deletions

View File

@ -5,8 +5,8 @@
<artifactId>auth-client</artifactId>
<packaging>jar</packaging>
<name>auth-client</name>
<description>Spring Cloud Security APP Client Module</description>
<description>Spring Cloud Security APP Client Module</description>
<parent>
<artifactId>spring-cloud-security</artifactId>
<groupId>com.baeldung</groupId>
@ -61,6 +61,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -1,6 +1,6 @@
<?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">
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>
<artifactId>auth-resource</artifactId>
@ -14,16 +14,16 @@
<groupId>com.baeldung</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>