Skip to content

Commit

Permalink
Exclude .sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider authored Apr 19, 2023
1 parent 43e7508 commit 3c117f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/openrewrite/maven/ResourceParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.stream.Collectors;

public class ResourceParser {
private static final Set<String> DEFAULT_IGNORED_DIRECTORIES = new HashSet<>(Arrays.asList("build", "target", "out", ".gradle", ".idea", ".project", "node_modules", ".git", ".metadata", ".DS_Store"));
private static final Set<String> DEFAULT_IGNORED_DIRECTORIES = new HashSet<>(Arrays.asList("build", "target", "out", ".sonar", ".gradle", ".idea", ".project", "node_modules", ".git", ".metadata", ".DS_Store"));

private final Path baseDir;
private final Log logger;
Expand Down

0 comments on commit 3c117f8

Please sign in to comment.