From 5453f7c59c1ca89240dae55aa015bc87c9e888d5 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 8 Sep 2015 16:16:13 +0200 Subject: [PATCH] Fix broken build Commit c85f4df0ee broke the build as some tests are expecting HSQL to be used. We now specify the name of the database rather than specifying the jdbc url. --- .../src/test/resources/application-scratch.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-samples/spring-boot-sample-data-jpa/src/test/resources/application-scratch.properties b/spring-boot-samples/spring-boot-sample-data-jpa/src/test/resources/application-scratch.properties index 667889c663..f329f77451 100644 --- a/spring-boot-samples/spring-boot-sample-data-jpa/src/test/resources/application-scratch.properties +++ b/spring-boot-samples/spring-boot-sample-data-jpa/src/test/resources/application-scratch.properties @@ -1,2 +1,2 @@ -spring.datasource.url: jdbc:hsqldb:mem:scratchdb -spring.jmx.default_domain: jpa.sample \ No newline at end of file +spring.datasource.name=.name=scratchdb +spring.jmx.default_domain=jpa.sample \ No newline at end of file