File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,22 @@ https://github.com/functionaljava/functionaljava/blob/master/etc/release-notes.m
2121
2222== Javadoc
2323
24- * https://functionaljava.ci.cloudbees.com/job/master/javadoc/[Latest (4.2-beta-2-SNAPSHOT)]
25- * https://functionaljava.ci.cloudbees.com/job/3.x/javadoc/[Latest 3.x]
24+ * https://functionaljava.ci.cloudbees.com/job/master/javadoc/[Latest 4.x (currently 4.3-SNAPSHOT)]
25+ * http://www.functionaljava.org/javadoc/4.2/functionaljava/index.html[4.2 - functionaljava]
26+ * http://www.functionaljava.org/javadoc/4.2/functionaljava-java8/index.html[4.2 - functionaljava-java8]
27+ * http://www.functionaljava.org/javadoc/4.1/index.html[4.1]
28+ * http://www.functionaljava.org/javadoc/4.0/index.html[4.0]
29+ * https://functionaljava.ci.cloudbees.com/job/3.x/javadoc/[Latest 3.x (currently 3.3-SNAPSHOT)]
30+ * http://www.functionaljava.org/javadoc/3.2/index.html[3.2]
31+ * http://www.functionaljava.org/javadoc/3.1/index.html[3.1]
2632* https://functionaljava.googlecode.com/svn/artifacts/3.0/javadoc/index.html[3.0]
2733* https://functionaljava.googlecode.com/svn/artifacts/2.22/javadoc/index.html[2.22]
2834
2935== Building
3036
3137FunctionalJava uses the Retro Lambda project to backport Java 8 lambdas to Java 7 bytecode. This requires access to both JDK 7 and 8. The build system requires the environment variables `JAVA7_HOME` and `JAVA8_HOME` to refer to the appropriate directories.
3238
33- Building is done using Gradle 2.0 . In the root directory run:
39+ Building is done using Gradle. In the root directory run:
3440----
3541./gradlew
3642----
Original file line number Diff line number Diff line change 33:jbake-tags:
44:jbake-status: published
55
6- The latest stable version as at Aug 2014 is `4.2-beta-1 ` . Here is how to quickly add the library to your project and get started.
6+ The latest stable version as at Aug 2014 is `4.2` . Here is how to quickly add the library to your project and get started.
77
88The Functional Java artifact is published to Maven Central using the group `org.functionaljava` with two published artifacts:
99
@@ -17,8 +17,8 @@ The Functional Java artifact is published to Maven Central using the group `org.
1717To add Functional Java to your Gradle project, add the following snippet to the _dependencies_ section of your `build.gradle` file.
1818
1919----
20- compile "org.functionaljava:functionaljava:4.2-beta-1 "
21- compile "org.functionaljava:functionaljava-java8:4.2-beta-1 "
20+ compile "org.functionaljava:functionaljava:4.2"
21+ compile "org.functionaljava:functionaljava-java8:4.2"
2222----
2323
2424== Maven
@@ -29,12 +29,12 @@ Add the following dependencies.
2929<dependency>
3030 <groupId>org.functionaljava</groupId>
3131 <artifactId>functionaljava</artifactId>
32- <version>4.2-beta-1 </version>
32+ <version>4.2</version>
3333</dependency>
3434<dependency>
3535 <groupId>org.functionaljava</groupId>
3636 <artifactId>functionaljava-java8</artifactId>
37- <version>4.2-beta-1 </version>
37+ <version>4.2</version>
3838</dependency>
3939
4040----
You can’t perform that action at this time.
0 commit comments