Skip to content

Commit 4c6535f

Browse files
fix rebase on master
1 parent d7a0852 commit 4c6535f

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;
@@ -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(),

0 commit comments

Comments
 (0)