Browse Source

Merge pull request #18196 from vpavic

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

Closes gh-18196
pull/18206/head
Stephane Nicoll 6 years ago
parent
commit
1f280e394b
  1. 13
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml
  2. 1
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties

13
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml

@ -14,11 +14,22 @@ @@ -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>

1
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties

@ -0,0 +1 @@ @@ -0,0 +1 @@
spring.quartz.job-store-type=jdbc
Loading…
Cancel
Save