2018-02-28 11:16:32 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2017-01-01 06:41:43 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2017-05-18 14:44:35 -04:00
|
|
|
<artifactId>vavr</artifactId>
|
2017-01-01 06:41:43 -05:00
|
|
|
<version>1.0</version>
|
2017-05-18 14:44:35 -04:00
|
|
|
<name>vavr</name>
|
2017-10-05 13:16:25 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
2018-02-28 11:16:32 -05:00
|
|
|
<artifactId>parent-boot-5</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-02-28 13:40:10 -05:00
|
|
|
<relativePath>../parent-boot-5</relativePath>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2017-01-01 06:41:43 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2017-05-18 14:44:35 -04:00
|
|
|
<groupId>io.vavr</groupId>
|
|
|
|
<artifactId>vavr-test</artifactId>
|
|
|
|
<version>${vavr.version}</version>
|
2017-01-01 06:41:43 -05:00
|
|
|
</dependency>
|
2017-05-18 14:44:35 -04:00
|
|
|
|
2017-07-13 23:06:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2017-10-05 13:16:25 -04:00
|
|
|
|
2017-07-13 23:06:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2017-10-05 13:16:25 -04:00
|
|
|
<scope>test</scope>
|
2017-07-13 23:06:36 -04:00
|
|
|
</dependency>
|
2018-02-28 11:16:32 -05:00
|
|
|
|
2017-08-27 16:44:06 -04:00
|
|
|
<dependency>
|
2018-02-28 11:16:32 -05:00
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<version>${awaitility.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-01-01 06:41:43 -05:00
|
|
|
</dependencies>
|
2018-02-28 11:16:32 -05:00
|
|
|
|
2017-07-13 23:06:36 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spring-snapshot</id>
|
|
|
|
<name>Spring Snapshot Repository</name>
|
|
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
2017-07-19 16:46:42 -04:00
|
|
|
<repository>
|
|
|
|
<id>snapshots</id>
|
|
|
|
<name>libs-snapshot</name>
|
|
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
|
|
</repository>
|
2017-07-13 23:06:36 -04:00
|
|
|
</repositories>
|
2018-02-28 11:16:32 -05:00
|
|
|
|
|
|
|
<pluginRepositories>
|
2017-07-19 16:46:42 -04:00
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>http://repo.spring.io/snapshot</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2018-02-28 11:16:32 -05:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<vavr.version>0.9.1</vavr.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<awaitility.version>3.0.0</awaitility.version>
|
|
|
|
</properties>
|
|
|
|
|
2017-01-25 14:22:00 -05:00
|
|
|
</project>
|