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

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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> <modelVersion>4.0.0</modelVersion>
<artifactId>auth-resource</artifactId> <artifactId>auth-resource</artifactId>
@ -17,12 +17,12 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.security.oauth</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-security-oauth2</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-cloud-starter-security</artifactId> <artifactId>spring-security-oauth2</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>