diff --git a/pom.xml b/pom.xml
index b729a7b..4f9b45e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,10 +26,11 @@
spring-boot-demo-orm-mybatis-mapper-page
spring-boot-demo-orm-mybatis-plus
spring-boot-demo-orm-beetlsql
+ spring-boot-demo-upload
spring-boot-demo-cache-redis
spring-boot-demo-cache-ehcache
spring-boot-demo-email
- spring-boot-demo-upload
+ spring-boot-demo-task
spring-boot-demo-war
spring-boot-demo-elasticsearch
spring-boot-demo-neo4j
diff --git a/spring-boot-demo-task/.gitignore b/spring-boot-demo-task/.gitignore
new file mode 100644
index 0000000..82eca33
--- /dev/null
+++ b/spring-boot-demo-task/.gitignore
@@ -0,0 +1,25 @@
+/target/
+!.mvn/wrapper/maven-wrapper.jar
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/build/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
\ No newline at end of file
diff --git a/spring-boot-demo-task/pom.xml b/spring-boot-demo-task/pom.xml
new file mode 100644
index 0000000..ef03feb
--- /dev/null
+++ b/spring-boot-demo-task/pom.xml
@@ -0,0 +1,48 @@
+
+
+ 4.0.0
+
+ spring-boot-demo-task
+ 1.0.0-SNAPSHOT
+ jar
+
+ spring-boot-demo-task
+ Demo project for Spring Boot
+
+
+ com.xkcoding
+ spring-boot-demo
+ 1.0.0-SNAPSHOT
+
+
+
+ UTF-8
+ UTF-8
+ 1.8
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+ spring-boot-demo-task
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/spring-boot-demo-task/src/main/java/com/xkcoding/task/SpringBootDemoTaskApplication.java b/spring-boot-demo-task/src/main/java/com/xkcoding/task/SpringBootDemoTaskApplication.java
new file mode 100644
index 0000000..ec1b3cf
--- /dev/null
+++ b/spring-boot-demo-task/src/main/java/com/xkcoding/task/SpringBootDemoTaskApplication.java
@@ -0,0 +1,12 @@
+package com.xkcoding.task;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringBootDemoTaskApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringBootDemoTaskApplication.class, args);
+ }
+}
diff --git a/spring-boot-demo-task/src/main/resources/application.properties b/spring-boot-demo-task/src/main/resources/application.properties
new file mode 100644
index 0000000..e69de29
diff --git a/spring-boot-demo-task/src/test/java/com/xkcoding/task/SpringBootDemoTaskApplicationTests.java b/spring-boot-demo-task/src/test/java/com/xkcoding/task/SpringBootDemoTaskApplicationTests.java
new file mode 100644
index 0000000..e4e281d
--- /dev/null
+++ b/spring-boot-demo-task/src/test/java/com/xkcoding/task/SpringBootDemoTaskApplicationTests.java
@@ -0,0 +1,16 @@
+package com.xkcoding.task;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class SpringBootDemoTaskApplicationTests {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}