[BAEL-7819] - Added standard parent pom and fixed tests in those modules

This commit is contained in:
amit2103
2018-08-05 23:17:35 +05:30
parent 5ccecc6aac
commit a7689c4ae2
40 changed files with 157 additions and 148 deletions
@@ -0,0 +1,18 @@
package com.baeldung.SpringCloudTaskFinal;
import static org.mockito.Mockito.mock;
import org.springframework.cloud.deployer.spi.task.TaskLauncher;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class TaskSinkConfiguration {
@Bean
public TaskLauncher taskLauncher() {
return mock(TaskLauncher.class);
}
}