From e45ba6ce5b1c56a7b5803c96e811d6eefe1b141d Mon Sep 17 00:00:00 2001 From: Jens Kristian Villadsen Date: Thu, 17 Feb 2022 23:12:10 +0100 Subject: [PATCH] Version bump to 5.7.0 and a few other components now draw the version from parent --- pom.xml | 12 ++++-------- src/main/resources/application.yaml | 6 +++++- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index d9a0387..69aef16 100644 --- a/pom.xml +++ b/pom.xml @@ -14,18 +14,17 @@ ca.uhn.hapi.fhir hapi-fhir - 5.7.0-PRE9-SNAPSHOT + 5.7.0 hapi-fhir-jpaserver-starter 8 - 2.5.6 - 3.6.3 + 3.8.3 war @@ -57,13 +56,10 @@ mysql mysql-connector-java - 8.0.25 - org.postgresql postgresql - 42.2.25 @@ -164,7 +160,7 @@ org.yaml snakeyaml - 1.29 + 1.30 @@ -197,7 +193,7 @@ org.webjars bootstrap - 3.4.1 + 5.1.3 org.webjars diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 03abf0b..cc298f4 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -18,7 +18,11 @@ spring: properties: hibernate.format_sql: false hibernate.show_sql: false - # hibernate.dialect: org.hibernate.dialect.h2dialect + #Hibernate dialect is automatically detected except Postgres and H2. + #If using H2, then supply the value of ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect + #If using postgres, then supply the value of ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgres94Dialect + + hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect # hibernate.hbm2ddl.auto: update # hibernate.jdbc.batch_size: 20 # hibernate.cache.use_query_cache: false