Feature-rich & self-contained functional programming in Java™ 8 and above. Javaslang is a functional library for Java 8+ that provides persistent data types and functional control structures. Because Javaslang does not depend on any libraries (other than the JVM) you can easily add it as standalone .jar to your classpath.
There's also a blog.
See User Guide
See http://central.sonatype.org/pages/ossrh-guide.html
Sonatype-Nexus specific maven configuration: ~/.m2/settings.xml
<settings>
<servers>
<server>
<id>sonatype-nexus-snapshots</id>
<username>your-jira-id</username>
<password>your-jira-pwd</password>
</server>
<server>
<id>sonatype-nexus-staging</id>
<username>your-jira-id</username>
<password>your-jira-pwd</password>
</server>
</servers>
</settings>
mvn clean deploy
The snaphot is deployed to https://oss.sonatype.org/content/repositories/snapshots/
mvn release:clean
mvn release:prepare
mvn release:perform