java-tutorials/vavr/pom.xml

76 lines
2.4 KiB
XML
Raw Normal View History

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>
<artifactId>vavr</artifactId>
2017-01-01 06:41:43 -05:00
<version>1.0</version>
<name>vavr</name>
2017-10-05 13:16:25 -04:00
2018-02-28 11:16:32 -05:00
<parent>
<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>
</parent>
2017-01-01 06:41:43 -05:00
<dependencies>
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr-test</artifactId>
<version>${vavr.version}</version>
2017-01-01 06:41:43 -05:00
</dependency>
<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
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
2017-10-05 13:16:25 -04:00
<scope>test</scope>
</dependency>
2018-02-28 11:16:32 -05: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
<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>
</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-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>
</project>