From 479b4be5f5402ac67b694c769c13d909a8464921 Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Tue, 10 Sep 2019 23:00:35 +0200 Subject: [PATCH] Update Quartz smoke test to use JDBC job store See gh-18196 --- .../spring-boot-smoke-test-quartz/pom.xml | 13 ++++++++++++- .../src/main/resources/application.properties | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml index 9c568780d79..01241bd3818 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/pom.xml @@ -14,11 +14,22 @@ ${basedir}/../../.. + + + org.springframework.boot + spring-boot-starter-jdbc + org.springframework.boot spring-boot-starter-quartz - + + + com.h2database + h2 + runtime + + org.springframework.boot spring-boot-starter-test diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties new file mode 100644 index 00000000000..70c20575f51 --- /dev/null +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-quartz/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.quartz.job-store-type=jdbc