This repository was archived by the owner on Jan 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ a minimal set of extra dependencies.
166166
167167## [ javac] ( https://github.com/google/error-prone-javac )
168168
169- * Version: 9-dev-r4023-1 (javac-9-dev-r4023-1 .jar)
169+ * Version: 9-dev-r4023-2 (javac-9-dev-r4023-2 .jar)
170170* License: GNU GPL v2 with Classpath exception (plus other licenses, see third_party/java/jdk/langtools/LICENSE file).
171171
172172## [ jarjar] ( https://code.google.com/p/jarjar/ )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ version of the JRE. Those builds are vendored in
1010//third_party/java/jdk/langtools.
1111
1212Currently Bazel supports running on a JRE 8 only because the default Java
13- compiler used (//third_party/java/jdk/langtools/javac-9-dev-r3297-4 .jar) is the
13+ compiler used (//third_party/java/jdk/langtools/javac-9-dev-r4023-2 .jar) is the
1414Java compiler of OpenJDK 9 compiled to run on a JRE 8. This cannot
1515be built to run on a JRE 7 because of code incompatibility. Bazel's
1616JavaBuilder at HEAD cannot be linked with earlier version of the
Original file line number Diff line number Diff line change @@ -19,40 +19,40 @@ filegroup(
1919 "//conditions:default" : [
2020 "BUILD" ,
2121 "LICENSE" ,
22- "javac-9-dev-r4023-1 .jar" ,
23- "javac-9-dev-r4023-1 .srcjar" ,
22+ "javac-9-dev-r4023-2 .jar" ,
23+ "javac-9-dev-r4023-2 .srcjar" ,
2424 ],
2525 }),
2626)
2727
2828java_import (
2929 name = "javac" ,
30- jars = ["javac-9-dev-r4023-1 .jar" ],
30+ jars = ["javac-9-dev-r4023-2 .jar" ],
3131)
3232
3333filegroup (
3434 name = "javac_jar" ,
3535 srcs = select ({
3636 "//tools/jdk:jdk7" : ["javac7.jar" ],
37- "//conditions:default" : ["javac-9-dev-r4023-1 .jar" ],
37+ "//conditions:default" : ["javac-9-dev-r4023-2 .jar" ],
3838 }),
3939)
4040
4141# TODO(cushon): delete
4242alias (
43- name = "test-srcs-9-dev-r4023-1 " ,
43+ name = "test-srcs-9-dev-r4023-2 " ,
4444 actual = ":test-srcs" ,
4545)
4646
4747# TODO(cushon): delete
4848alias (
49- name = "javac-9-dev-r4023-1 " ,
49+ name = "javac-9-dev-r4023-2 " ,
5050 actual = ":javac" ,
5151)
5252
5353# TODO(cushon): delete
5454alias (
55- name = "javac_jar-9-dev-r4023-1 " ,
55+ name = "javac_jar-9-dev-r4023-2 " ,
5656 actual = ":javac_jar" ,
5757)
5858
You can’t perform that action at this time.
0 commit comments