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 ;
@@ -147,6 +148,7 @@ void run() throws IOException {
147148 .stream ()
148149 .map (File ::getAbsolutePath )
149150 .collect (Collectors .toList ());
151+
150152 List <String > mainLibrariesFilenames = SonarUtils .exists (getMainLibraries () == null ? Collections .emptyList () : getMainLibraries ())
151153 .stream ()
152154 .map (File ::getAbsolutePath )
@@ -155,6 +157,7 @@ void run() throws IOException {
155157 .stream ()
156158 .map (File ::getAbsolutePath )
157159 .collect (Collectors .toList ());
160+
158161 ProjectProperties projectProperties = new ProjectProperties (
159162 getProjectName (),
160163 isTopLevelProject (),
You can’t perform that action at this time.
0 commit comments