Skip to content

Commit 5093af0

Browse files
committed
Added javadoc references for versions back to 3.0, updated latest version to 4.2
1 parent 7c17944 commit 5093af0

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

src/jbake/content/docs.adoc

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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

3137
FunctionalJava 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
----

src/jbake/content/quickstart.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

88
The 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.
1717
To 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
----

0 commit comments

Comments
 (0)