@@ -22,8 +22,9 @@ Important URLs for the project are:
2222
2323* Website, http://www.functionaljava.org
2424* Website repository, http://github.com/functionaljava/functionaljava.github.io
25- * Travis continuous integration build, https://travis-ci.org/functionaljava/functionaljava
26- * Sonatype Repository, https://oss.sonatype.org/content/groups/public/org/functionaljava/
25+ * Travis continuous integration build, https://app.travis-ci.com/github/functionaljava/functionaljava
26+ * Sonatype repository, https://oss.sonatype.org/content/groups/public/org/functionaljava/
27+ * Maven Central repository, https://mvnrepository.com/artifact/org.functionaljava/functionaljava
2728
2829== Downloading
2930
@@ -35,43 +36,43 @@ The Functional Java artifact is published to Maven Central using the group `org.
3536* Java 8 specific support (`functionaljava-java8`)
3637* property based testing (`functionaljava-quickcheck` or `functionaljava-quickcheck_1.8` if you use Java 8+)
3738
38- The latest stable version is `4.8.1 `. This can be added to your Gradle project by adding the dependencies:
39+ The latest stable version is `4.9 `. This can be added to your Gradle project by adding the dependencies:
3940----
40- compile "org.functionaljava:functionaljava:4.8.1 "
41- compile "org.functionaljava:functionaljava-java8:4.8.1 "
42- compile "org.functionaljava:functionaljava-quickcheck:4.8.1 "
43- compile "org.functionaljava:functionaljava-java-core:4.8.1 "
41+ compile "org.functionaljava:functionaljava:4.9 "
42+ compile "org.functionaljava:functionaljava-java8:4.9 "
43+ compile "org.functionaljava:functionaljava-quickcheck:4.9 "
44+ compile "org.functionaljava:functionaljava-java-core:4.9 "
4445----
4546
4647and in Maven:
4748----
4849<dependency>
4950 <groupId>org.functionaljava</groupId>
5051 <artifactId>functionaljava</artifactId>
51- <version>4.8.1 </version>
52+ <version>4.9 </version>
5253</dependency>
5354<dependency>
5455 <groupId>org.functionaljava</groupId>
5556 <artifactId>functionaljava-java8</artifactId>
56- <version>4.8.1 </version>
57+ <version>4.9 </version>
5758</dependency>
5859<dependency>
5960 <groupId>org.functionaljava</groupId>
6061 <artifactId>functionaljava-quickcheck</artifactId>
61- <version>4.8.1 </version>
62+ <version>4.9 </version>
6263</dependency>
6364<dependency>
6465 <groupId>org.functionaljava</groupId>
6566 <artifactId>functionaljava-java-core</artifactId>
66- <version>4.8.1 </version>
67+ <version>4.9 </version>
6768</dependency>
6869----
6970
7071== Building
7172
7273FunctionalJava uses the Retro Lambda project to backport Java 8 lambdas to Java 6 bytecode. This requires access to both JDK 6 and 8. The build system requires the environment variables `JAVA6_HOME` and `JAVA8_HOME` to refer to the appropriate directories.
7374
74- Building is done using Gradle 2.13 . In the root directory run:
75+ Building is done using Gradle 6.8.3 . In the root directory run:
7576----
7677./gradlew
7778----
0 commit comments