Updated all dependencies for M1 RELEASE

Updated to Spring Cloud Build 2.2.0.M1
This commit is contained in:
Glenn Renfro
2019-04-15 09:00:07 -04:00
parent d890835923
commit fd8ab15238
25 changed files with 87 additions and 36 deletions

View File

@@ -27,9 +27,9 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
public class JobInstanceEventTests {
public static final long INSTANCE_ID = 1;
private static final long INSTANCE_ID = 1;
public static final String JOB_NAME = "FOOBAR";
private static final String JOB_NAME = "FOOBAR";
@Test
public void testConstructor() {

View File

@@ -31,9 +31,9 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
public class TaskLaunchRequestTests {
public static final String URI = "https://myURI";
private static final String URI = "https://myURI";
public static final String APP_NAME = "MY_APP_NAME";
private static final String APP_NAME = "MY_APP_NAME";
@Test
public void testEquals() {

View File

@@ -40,7 +40,7 @@ public class TaskConfiguration {
public static class TestTaskLauncher implements TaskLauncher {
public static final String LAUNCH_ID = "TEST_LAUNCH_ID";
private static final String LAUNCH_ID = "TEST_LAUNCH_ID";
private LaunchState state = LaunchState.unknown;

View File

@@ -23,6 +23,7 @@ import org.springframework.cloud.task.launcher.annotation.EnableTaskLauncher;
/**
* @author Glenn Renfro
*/
// @checkstyle:on
@SpringBootApplication
@EnableTaskLauncher
public class TaskLauncherSinkApplication {
@@ -32,3 +33,4 @@ public class TaskLauncherSinkApplication {
}
}
// @checkstyle:off