Skip to content

Commit

Permalink
Accept any directories under src in ResourceParser (#868)
Browse files Browse the repository at this point in the history
* Added accepted directories to accept all recursive directories within "src"

* Flip field order to match usage & natural order

---------

Co-authored-by: marcel-gepardec <marcel.reiter@gepardec.at>
Co-authored-by: Tim te Beek <tim@moderne.io>
  • Loading branch information
3 people authored Sep 23, 2024
1 parent 047fca9 commit 97fafbb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/openrewrite/maven/ResourceParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import java.util.stream.Stream;

public class ResourceParser {
private static final Set<String> DEFAULT_ACCEPTED_DIRECTORIES = new HashSet<>(Arrays.asList("src"));
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"));
Expand Down Expand Up @@ -283,6 +284,9 @@ private boolean isParsedAsPlainText(Path path) {

private boolean isIgnoredDirectory(Path searchDir, Path path) {
for (Path pathSegment : searchDir.relativize(path)) {
if (DEFAULT_ACCEPTED_DIRECTORIES.contains(pathSegment.toString())){
return false;
}
if (DEFAULT_IGNORED_DIRECTORIES.contains(pathSegment.toString())) {
return true;
}
Expand Down

0 comments on commit 97fafbb

Please sign in to comment.