Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accept any directories under src in ResourceParser #868

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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