Merge pull request #18196 from vpavic

* pr/18196:
  Update Quartz smoke test to use JDBC job store

Closes gh-18196
This commit is contained in:
Stephane Nicoll 2019-09-11 10:00:35 +02:00
commit 1f280e394b
2 changed files with 13 additions and 1 deletions

View File

@ -14,11 +14,22 @@
<main.basedir>${basedir}/../../..</main.basedir>
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
<!-- Runtime -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>