Updated Spring Cloud Task to latest releases

Updated to remove all commons-logging-api dependencies to resolve  logging issue.

Updated to handle 2.0.0.M3 Spring Cloud Stream

resovles #347

Changes based on code review
This commit is contained in:
Glenn Renfro
2017-10-25 13:01:10 -04:00
parent 15acc0c756
commit e279846e7e
14 changed files with 43 additions and 40 deletions

View File

@@ -44,7 +44,7 @@ public class TaskLaunchRequest implements Serializable{
private String applicationName;
/**
* Constructor for the TaskLaunchRequest;
* Constructor for the TaskLaunchRequest.
* @param uri the URI to the task artifact to be launched.
* @param commandlineArguments list of commandlineArguments to be used by the task
* @param environmentProperties are the environment variables for this task.
@@ -66,6 +66,14 @@ public class TaskLaunchRequest implements Serializable{
setApplicationName(applicationName);
}
/**
* Constructor for the TaskLaunchRequest.
*
* @since 2.0.0
*/
public TaskLaunchRequest() {
}
/**
* Returns the current uri to the artifact for this launch request.
*/