Updated samples to use latest boot

Update integration tests to use latest stream paradigm
Update tests to be in compliance with 1.5.2.

resolves #289
This commit is contained in:
Glenn Renfro
2017-03-03 16:04:56 -05:00
committed by Michael Minella
parent 4dbc256a4c
commit 4e68adf5fa
13 changed files with 21 additions and 23 deletions

View File

@@ -19,6 +19,7 @@ package org.springframework.cloud.task.launcher.configuration;
import java.util.List;
import org.springframework.cloud.deployer.spi.core.AppDeploymentRequest;
import org.springframework.cloud.deployer.spi.core.RuntimeEnvironmentInfo;
import org.springframework.cloud.deployer.spi.task.LaunchState;
import org.springframework.cloud.deployer.spi.task.TaskLauncher;
import org.springframework.cloud.deployer.spi.task.TaskStatus;
@@ -75,6 +76,11 @@ public class TaskConfiguration {
throw new UnsupportedOperationException("Destroy is not supported");
}
@Override
public RuntimeEnvironmentInfo environmentInfo() {
throw new UnsupportedOperationException("environmentInfo is not supported");
}
public List<String> getCommandlineArguments() {
return commandlineArguments;
}