[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:
parent
87ac7a74be
commit
ffc79e7edd
6
pom.xml
6
pom.xml
|
@ -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>
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
## Vavr
|
||||
|
||||
This module contains articles about Vavr.
|
||||
|
||||
### Relevant Articles:
|
||||
- [Introduction to Vavr’s Either](https://www.baeldung.com/vavr-either)
|
||||
- [Interoperability Between Java and Vavr](https://www.baeldung.com/java-vavr)
|
||||
- [[<-- prev]](/vavr)
|
|
@ -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>
|
|
@ -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 Vavr’s Either](https://www.baeldung.com/vavr-either)
|
||||
- [Interoperability Between Java and Vavr](https://www.baeldung.com/java-vavr)
|
||||
- [[next -->]](/vavr-2)
|
||||
|
|
Loading…
Reference in New Issue