Updated dependencies

This commit is contained in:
Glenn Renfro
2019-08-23 10:28:38 -04:00
parent 8ba0437078
commit 68584bac1f
12 changed files with 30 additions and 15 deletions

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>
@@ -110,8 +110,8 @@
<properties>
<spring-cloud-stream.version>2.1.3.RELEASE</spring-cloud-stream.version>
<spring-cloud-deployer.version>2.0.1.RELEASE</spring-cloud-deployer.version>
<spring-cloud-deployer-local.version>2.0.2.RELEASE</spring-cloud-deployer-local.version>
<spring-cloud-deployer.version>2.0.4.RELEASE</spring-cloud-deployer.version>
<spring-cloud-deployer-local.version>2.0.5.RELEASE</spring-cloud-deployer-local.version>
<spring-cloud-stream-binder-rabbit.version>2.1.3.RELEASE</spring-cloud-stream-binder-rabbit.version>
<commons-logging.version>1.1</commons-logging.version>
<java-ee-api.version>8.0</java-ee-api.version>

View File

@@ -10,7 +10,7 @@
<parent>
<artifactId>spring-cloud-dependencies-parent</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -27,7 +27,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>
@@ -47,13 +47,13 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-integration</artifactId>
<version>4.1.1.RELEASE</version>
<version>4.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-deployer-local</artifactId>
<version>2.0.2.RELEASE</version>
<version>2.0.5.RELEASE</version>
</dependency>
<dependency>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath />
</parent>

View File

@@ -81,6 +81,21 @@ public class TaskConfiguration {
throw new UnsupportedOperationException("environmentInfo is not supported");
}
@Override
public int getMaximumConcurrentTasks() {
return 0;
}
@Override
public int getRunningTaskExecutionCount() {
return 0;
}
@Override
public String getLog(String id) {
return null;
}
public List<String> getCommandlineArguments() {
return commandlineArguments;
}