2016-12-28 02:33:38 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-05-12 14:32:54 -04:00
|
|
|
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-07-13 23:06:36 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
<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-03-20 07:18:41 -04:00
|
|
|
<dependency>
|
2017-05-18 14:44:35 -04:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
2017-03-20 07:18:41 -04:00
|
|
|
</dependency>
|
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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
2017-01-01 06:41:43 -05:00
|
|
|
</dependencies>
|
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>
|
2017-07-19 16:46:42 -04:00
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>http://repo.spring.io/snapshot</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2017-03-20 07:18:41 -04:00
|
|
|
<properties>
|
2017-07-13 23:06:36 -04:00
|
|
|
<java.version>1.8</java.version>
|
2017-05-18 14:44:35 -04:00
|
|
|
<vavr.version>0.9.0</vavr.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
2017-03-20 07:18:41 -04:00
|
|
|
</properties>
|
|
|
|
|
2017-08-01 11:00:03 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<forkCount>3</forkCount>
|
|
|
|
<reuseForks>true</reuseForks>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
<exclude>**/*LongRunningUnitTest.java</exclude>
|
|
|
|
<exclude>**/*ManualTest.java</exclude>
|
|
|
|
<exclude>**/JdbcTest.java</exclude>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-01-25 14:22:00 -05:00
|
|
|
</project>
|