2020-04-17 15:25:03 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-09-13 11:52:49 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-05-17 10:51:04 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>vavr-2</artifactId>
|
|
|
|
<name>vavr-2</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-04-17 15:25:03 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-08-25 11:47:55 -04:00
|
|
|
<artifactId>vavr-modules</artifactId>
|
2020-04-17 15:25:03 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2022-09-13 11:52:49 -04:00
|
|
|
|
2020-04-17 15:25:03 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vavr</groupId>
|
|
|
|
<artifactId>vavr-test</artifactId>
|
|
|
|
<version>${vavr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<vavr.version>0.9.1</vavr.version>
|
|
|
|
</properties>
|
2021-05-17 10:51:04 -04:00
|
|
|
|
2020-04-17 15:25:03 -04:00
|
|
|
</project>
|