Skip to content

Commit

Permalink
Comment tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Jan 7, 2024
1 parent af6525a commit 317e77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/rife/bld/BaseProject.java
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ public List<File> providedClasspathJars() {
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;
Expand Down

0 comments on commit 317e77b

Please sign in to comment.