From 196181ba3c017e5f4fa114db8e9031eb48c83b82 Mon Sep 17 00:00:00 2001 From: stendler <stendler@mi.fu-berlin.de> Date: Wed, 6 Dec 2017 19:43:58 +0100 Subject: [PATCH] dependency update ## remove flyway for now. hibernate can automatically update the scheme. Should be enough for our small project. ## add spring data-jpa. a bit more important for working with a database --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e61024d..76997e1 100644 --- a/pom.xml +++ b/pom.xml @@ -30,8 +30,8 @@ <artifactId>spring-boot-starter-data-rest</artifactId> </dependency> <dependency> - <groupId>org.flywaydb</groupId> - <artifactId>flyway-core</artifactId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> -- GitLab