Browse Source

🎉 spring-boot-demo-task-quartz 初始化.

pull/1/head
Yangkai.Shen 5 years ago
parent
commit
18ac4f14b5
2 changed files with 27 additions and 1 deletions
  1. +27
    -1
      spring-boot-demo-task-quartz/pom.xml
  2. +0
    -0
      spring-boot-demo-task-quartz/src/main/resources/application.yml

+ 27
- 1
spring-boot-demo-task-quartz/pom.xml View File

@@ -25,7 +25,17 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>

<dependency>
@@ -33,6 +43,22 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>

<build>


spring-boot-demo-task-quartz/src/main/resources/application.properties → spring-boot-demo-task-quartz/src/main/resources/application.yml View File


Loading…
Cancel
Save