Fix Vavr module (#2709)

This commit is contained in:
Grzegorz Piwowarek 2017-10-05 19:16:25 +02:00 committed by GitHub
parent e71902db06
commit 4cdcce6736
2 changed files with 6 additions and 5 deletions

View File

@ -9,8 +9,9 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version> <version>1.5.6.RELEASE</version>
<relativePath /> <relativePath/>
<!-- lookup parent from repository -->
</parent> </parent>
<dependencies> <dependencies>
@ -39,6 +40,7 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -43,5 +43,4 @@ public class VavrRepositoryIntegrationTest {
Seq<User> users = userRepository.findByName("John"); Seq<User> users = userRepository.findByName("John");
assertEquals(2, users.size()); assertEquals(2, users.size());
} }
} }