diff --git a/bunsen-core/pom.xml b/bunsen-core/pom.xml
index b7a5abf9..332ac01c 100644
--- a/bunsen-core/pom.xml
+++ b/bunsen-core/pom.xml
@@ -48,7 +48,7 @@
ca.uhn.hapi.fhir
- hapi-fhir-utilities
+ org.hl7.fhir.utilities
compile
diff --git a/pom.xml b/pom.xml
index 574cd560..5c4d2092 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
2.11.8
2.11
1.7.0
- 3.6.0
+ 4.0.0
4.11
http://github.com/cerner/bunsen/tree/master/
scm:git:git@github.com/cerner/bunsen.git
@@ -541,6 +541,13 @@
${hapi.fhir.version}
+
+ ca.uhn.hapi.fhir
+ org.hl7.fhir.utilities
+ ${hapi.fhir.version}
+ compile
+
+
ca.uhn.hapi.fhir
diff --git a/python/tests/test_bunsen_r4.py b/python/tests/test_bunsen_r4.py
index 1bc33dee..068b868c 100644
--- a/python/tests/test_bunsen_r4.py
+++ b/python/tests/test_bunsen_r4.py
@@ -50,6 +50,7 @@ def spark_session(request):
spark = SparkSession.builder \
.appName('bunsen-test') \
.master('local[2]') \
+ .config('spark.driver.host', 'localhost') \
.config('spark.jars', shaded_jar) \
.config('hive.exec.dynamic.partition.mode', 'nonstrict') \
.config('spark.sql.warehouse.dir', mkdtemp()) \
diff --git a/python/tests/test_bunsen_stu3.py b/python/tests/test_bunsen_stu3.py
index 31a99570..49aa3296 100644
--- a/python/tests/test_bunsen_stu3.py
+++ b/python/tests/test_bunsen_stu3.py
@@ -50,6 +50,7 @@ def spark_session(request):
spark = SparkSession.builder \
.appName('bunsen-test') \
.master('local[2]') \
+ .config('spark.driver.host', 'localhost') \
.config('spark.jars', shaded_jar) \
.config('hive.exec.dynamic.partition.mode', 'nonstrict') \
.config('spark.sql.warehouse.dir', mkdtemp()) \