Discussion:
Java: How to get openjdk8u60 sources
Александр Свиридов
2015-04-22 07:11:30 UTC
Permalink
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
Stanislav Baiduzhyi
2015-04-22 07:53:07 UTC
Permalink
Post by Александр Свиридов
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?
Find the tag you'd like to checkout here:
http://hg.openjdk.java.net/jdk8u/jdk8u/tags

Let's assume you want jdk8u60-b11
Then the process would look like this (using shell as example):

HGTAG=jdk8u60-b11
hg clone http://hg.openjdk.java.net/jdk8u/jdk8u $HGTAG
cd $HGTAG
bash get_source.sh
bash ./common/bin/hgforest.sh checkout $HGTAG
--
Regards,
Stas
Loading...