Skip to content

Commit

Permalink
fix: tolerate missing boot_classpath (#5914)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrlk committed Oct 31, 2023
1 parent 80d7894 commit 5145c7b
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -39,7 +39,9 @@ def _extract_java(target, ctx):
source_files.append(src.path)

classpath = [j.path for j in compilation.compilation_classpath.to_list()]
bootclasspath = [j.path for j in compilation.boot_classpath]
bootclasspath = []
if compilation.boot_classpath:
bootclasspath = [j.path for j in compilation.boot_classpath]

processorpath = []
processors = []
Expand Down

0 comments on commit 5145c7b

Please sign in to comment.