Skip to content

Commit b428ca0

Browse files
fix rebase on master
1 parent 3722688 commit b428ca0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/org/sonarqube/gradle/SonarResolverTask.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
import java.io.File;
2323
import java.io.IOException;
24+
import java.util.Collections;
2425
import java.util.List;
2526
import java.util.logging.Level;
2627
import 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(),

0 commit comments

Comments
 (0)