File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/org/sonarqube/gradle Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2121
2222import java .io .File ;
2323import java .io .IOException ;
24+ import java .util .Collections ;
2425import java .util .List ;
2526import java .util .logging .Level ;
2627import java .util .logging .Logger ;
@@ -133,6 +134,7 @@ void run() throws IOException {
133134 .stream ()
134135 .map (File ::getAbsolutePath )
135136 .collect (Collectors .toList ());
137+
136138 List <String > mainLibrariesFilenames = SonarUtils .exists (getMainLibraries () == null ? Collections .emptyList () : getMainLibraries ())
137139 .stream ()
138140 .map (File ::getAbsolutePath )
@@ -141,6 +143,7 @@ void run() throws IOException {
141143 .stream ()
142144 .map (File ::getAbsolutePath )
143145 .collect (Collectors .toList ());
146+
144147 ProjectProperties projectProperties = new ProjectProperties (
145148 getProjectName (),
146149 isTopLevelProject (),
You can’t perform that action at this time.
0 commit comments