Initial commit of POC functionality

This commit provides the inital code from a POC of spring-cloud-task
functionality.  Further cleanup will be done and tracked via future
stories.
This commit is contained in:
Glenn Renfro
2015-11-19 17:29:01 -05:00
committed by Michael Minella
parent d83cf5797b
commit bd1243cae6
13 changed files with 681 additions and 1 deletions

33
pom.xml Executable file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.3.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<packaging>pom</packaging>
<name>spring-cloud-task-parent</name>
<version>1.0.0.BUILD-SNAPSHOT</version>
<description>Spring Cloud Task Parent</description>
<modules>
<module>spring-cloud-task-core</module>
</modules>
</project>