Merge pull request #9124 from dupirefr/team/JAVA-630-split_vavr_module
[JAVA-630] vavr-2 module
This commit is contained in:
commit
994ff6ddd7
2
pom.xml
2
pom.xml
|
@ -814,6 +814,7 @@
|
||||||
|
|
||||||
<module>vaadin</module>
|
<module>vaadin</module>
|
||||||
<module>vavr</module>
|
<module>vavr</module>
|
||||||
|
<module>vavr-2</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
@ -1313,6 +1314,7 @@
|
||||||
|
|
||||||
<module>vaadin</module>
|
<module>vaadin</module>
|
||||||
<module>vavr</module>
|
<module>vavr</module>
|
||||||
|
<module>vavr-2</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
</profile>
|
</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)
|
- [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)
|
- [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 Future in Vavr](https://www.baeldung.com/vavr-future)
|
||||||
- [Introduction to Vavr’s Either](https://www.baeldung.com/vavr-either)
|
- [[next -->]](/vavr-2)
|
||||||
- [Interoperability Between Java and Vavr](https://www.baeldung.com/java-vavr)
|
|
||||||
|
|
Loading…
Reference in New Issue