Added Spring Boot Starter to Spring Cloud Task's Starter

Per Stephane's comment on the related issue, Spring Boot starters are
expected to bring in the spring-boot-starter.  Before this commit, the
Spring Cloud task starter did not, which lead to incorrect logging
configuration.  This commit addresses that issue.

Resolves SCT-359
This commit is contained in:
Michael Minella
2018-01-26 15:20:43 -06:00
parent d8a73ba183
commit 17cefe2759
6 changed files with 4 additions and 21 deletions

View File

@@ -15,6 +15,10 @@
<description>Spring Boot starter for Spring Cloud Task</description> <description>Spring Boot starter for Spring Cloud Task</description>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-core</artifactId> <artifactId>spring-cloud-task-core</artifactId>

View File

@@ -39,10 +39,6 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId> <artifactId>spring-boot-starter-batch</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>

View File

@@ -35,11 +35,6 @@
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-task</artifactId> <artifactId>spring-cloud-starter-task</artifactId>

View File

@@ -35,10 +35,6 @@
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-task</artifactId> <artifactId>spring-cloud-starter-task</artifactId>

View File

@@ -35,10 +35,6 @@
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-task</artifactId> <artifactId>spring-cloud-starter-task</artifactId>

View File

@@ -35,10 +35,6 @@
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>