[JAVA-630] vavr-2 module

* Creation

* Moved https://www.baeldung.com/vavr-either code

* Moved https://www.baeldung.com/java-vavr code
This commit is contained in:
dupirefr 2020-04-17 21:25:03 +02:00
parent 87ac7a74be
commit ffc79e7edd
7 changed files with 40 additions and 4 deletions

View File

@ -812,7 +812,8 @@
<module>libraries</module> <!-- very long running -->
<module>vaadin</module>
<module>vavr</module>
<module>vavr</module>
<module>vavr-2</module>
</modules>
</profile>
@ -1310,7 +1311,8 @@
<module>libraries</module> <!-- very long running -->
<module>vaadin</module>
<module>vavr</module>
<module>vavr</module>
<module>vavr-2</module>
</modules>
</profile>

8
vavr-2/README.md Normal file
View File

@ -0,0 +1,8 @@
## Vavr
This module contains articles about Vavr.
### Relevant Articles:
- [Introduction to Vavrs Either](https://www.baeldung.com/vavr-either)
- [Interoperability Between Java and Vavr](https://www.baeldung.com/java-vavr)
- [[<-- prev]](/vavr)

27
vavr-2/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent-modules</artifactId>
<groupId>com.baeldung</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>vavr-2</artifactId>
<name>vavr-2</name>
<packaging>jar</packaging>
<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>
</project>

View File

@ -13,5 +13,4 @@ This module contains articles about Vavr.
- [Guide to Collections API in Vavr](https://www.baeldung.com/vavr-collections)
- [Collection Factory Methods for Vavr](https://www.baeldung.com/vavr-collection-factory-methods)
- [Introduction to Future in Vavr](https://www.baeldung.com/vavr-future)
- [Introduction to Vavrs Either](https://www.baeldung.com/vavr-either)
- [Interoperability Between Java and Vavr](https://www.baeldung.com/java-vavr)
- [[next -->]](/vavr-2)