Update Quartz smoke test to use JDBC job store

See gh-18196
This commit is contained in:
Vedran Pavic
2019-09-10 23:00:35 +02:00
committed by Stephane Nicoll
parent f033016364
commit 479b4be5f5
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>