File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def _impl(ctx):
20
20
transitive_jar_paths = [j .path for j in transitive_jar_set .to_list ()]
21
21
dir = ctx .outputs .zip .path + ".dir"
22
22
source = ctx .outputs .zip .path + ".source"
23
- external_docs = ["http ://docs.oracle.com/javase/8 /docs/api" ] + ctx .attr .external_docs
23
+ external_docs = ["https ://docs.oracle.com/en/java/ javase/11 /docs/api" ] + ctx .attr .external_docs
24
24
cmd = [
25
25
"rm -rf %s" % source ,
26
26
"mkdir %s" % source ,
@@ -36,7 +36,8 @@ def _impl(ctx):
36
36
"-notimestamp" ,
37
37
"-quiet" ,
38
38
"-windowtitle '%s'" % ctx .attr .title ,
39
- " " .join (["-link %s" % url for url in external_docs ]),
39
+ "-source 11" ,
40
+ " " .join (["-link '%s'" % url for url in external_docs ]),
40
41
"-sourcepath %s" % source ,
41
42
"-subpackages " ,
42
43
":" .join (ctx .attr .pkgs ),
You can’t perform that action at this time.
0 commit comments