Reputation:
I understand that it seems to be very easy question but I can't find. When I do
hg clone http://hg.openjdk.java.net/jdk8u/jdk8u
I get sources for openjdk8u40 but I need openjdk8u60. How to get them?
Upvotes: 3
Views: 1698
Reputation: 1936
My receipe is:
/usr/bin
.hg clone http://hg.openjdk.java.net/jdk8u/jdk8u/
cd jdk8u/
chmod +x get_source.sh
LANG=C
./get_source.sh
jdk8u
as stated in this example) in order to build sources from received data, depending on your system.Upvotes: 7
Reputation: 4015
if you browse the hg repository you find that the organization is the following one: there are different repositories for different versions and there is one repository for the "dev version" at http://hg.openjdk.java.net/jdk8u/jdk8u you find the current stable version that is tagged jdk8u60-b12 so every new commit in this branch represent the current jdk8u60 stable version. if you want to grab the dev version of the same jdk you have to clone the repository at http://hg.openjdk.java.net/jdk8u/jdk8u-dev/
Upvotes: 2