Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 816 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 816 Bytes

Maven Central Build Status Gitter Chat

GWT support for Vavr

Using Vavr in GWT maven projects

  • Add the following maven dependency to your project:
<dependency>
    <groupId>io.vavr</groupId>
    <artifactId>vavr-gwt</artifactId>
    <version>{vavr-current-version}</version>
</dependency>
  • Inherit the Vavr module in your GWT module's descriptor file:
<module>
    <!-- ... -->
    <inherits name="Vavr"/>
    <!-- ... -->
</module>
  • Use the Vavr APIs in your code.