2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 00:07:12 -07:00

Comment tweaks

This commit is contained in:
Geert Bevin 2024-01-07 00:06:20 -05:00
parent af6525acfa
commit 317e77bfd1

View file

@ -1433,7 +1433,7 @@ public class BaseProject extends BuildExecutor {
var dir_abs = libProvidedDirectory().getAbsoluteFile();
var jar_files = FileUtils.getFileList(dir_abs, INCLUDED_JARS, EXCLUDED_JARS);
// build the compilation classpath
// build the provided classpath
var classpath = new ArrayList<>(jar_files.stream().map(file -> new File(dir_abs, file)).toList());
addLocalDependencies(classpath, Scope.provided);
return classpath;