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

@ -5,12 +5,13 @@
<artifactId>vavr</artifactId>
<version>1.0</version>
<name>vavr</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath />
<version>1.5.6.RELEASE</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<dependencies>
@ -35,10 +36,11 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>

View File

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