diff --git a/pom.xml b/pom.xml
index 93661de5a..527776d30 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
2.2.0.BUILD-SNAPSHOT
0.25.0.RELEASE
- 4.3.10.Final
+ 5.2.17.Final
1.1.0
false
diff --git a/spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml b/spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml
index 0942e9d4e..6d8ac69b9 100644
--- a/spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml
+++ b/spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml
@@ -51,7 +51,7 @@
com.fasterxml.jackson.datatype
- jackson-datatype-hibernate4
+ jackson-datatype-hibernate5
diff --git a/spring-data-rest-tests/spring-data-rest-tests-jpa/src/test/java/org/springframework/data/rest/webmvc/json/Jackson2DatatypeHelperIntegrationTests.java b/spring-data-rest-tests/spring-data-rest-tests-jpa/src/test/java/org/springframework/data/rest/webmvc/json/Jackson2DatatypeHelperIntegrationTests.java
index 50fec4a2a..9a5a02ce6 100755
--- a/spring-data-rest-tests/spring-data-rest-tests-jpa/src/test/java/org/springframework/data/rest/webmvc/json/Jackson2DatatypeHelperIntegrationTests.java
+++ b/spring-data-rest-tests/spring-data-rest-tests-jpa/src/test/java/org/springframework/data/rest/webmvc/json/Jackson2DatatypeHelperIntegrationTests.java
@@ -79,7 +79,8 @@ public class Jackson2DatatypeHelperIntegrationTests {
PersistentEntity, ?> entity = entities.getRequiredPersistentEntity(Order.class);
PersistentProperty> property = entity.getRequiredPersistentProperty("creator");
- PersistentPropertyAccessor accessor = entity.getPropertyAccessor(orders.findById(this.order.getId()).orElse(null));
+ PersistentPropertyAccessor> accessor = entity
+ .getPropertyAccessor(orders.findById(this.order.getId()).orElse(null));
assertThat(objectMapper.writeValueAsString(accessor.getProperty(property))).isNotEqualTo("null");
}