Skip to content

Commit 8befce8

Browse files
authored
Update README (#2983)
1 parent dbebead commit 8befce8

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

README.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,33 @@
1212
\______/___/\___\______/___/_____/___/\___\______/___/\___\
1313
```
1414

15-
Vavr is an object-functional language extension to Java 8 that aims to reduce the number of lines of code and increase code quality.
16-
It provides persistent collections, functional abstractions for error handling, concurrent programming, pattern matching, and much more.
15+
Vavr is an **object-functional extension for Java that reduces boilerplate code and enhances code quality.**
1716

18-
Vavr fuses the power of object-oriented programming with the elegance and robustness of functional programming.
19-
The most interesting part is a feature-rich, persistent collection library that smoothly integrates with Java's standard collections.
17+
Vavr seamlessly combines object-oriented programming with the elegance and robustness of functional programming.
2018

21-
Because Vavr does not depend on any libraries (other than the JVM), you can easily add it as a standalone _.jar_ to your classpath.
19+
It provides:
20+
* persistent collections
21+
* functional abstractions for error handling, concurrent programming
22+
* pattern matching
23+
* ...and more
24+
25+
Since **Vavr has no dependencies** beyond the JVM, you can easily add it as a standalone .jar to your classpath.
2226

2327
### Stargazers over time
2428
[![Stargazers over time](https://starchart.cc/vavr-io/vavr.svg?variant=adaptive)](https://starchart.cc/vavr-io/vavr)
2529

30+
### Maven Dependency
31+
32+
<dependency>
33+
<groupId>io.vavr</groupId>
34+
<artifactId>vavr</artifactId>
35+
<version>0.10.6</version>
36+
</dependency>
37+
38+
### Gradle Dependency
39+
40+
implementation 'io.vavr:vavr:0.10.6'
41+
2642
## Using Vavr
2743

2844
See [User Guide](http://docs.vavr.io) and/or [Javadoc](http://www.javadoc.io/doc/io.vavr/vavr).

0 commit comments

Comments
 (0)