Skip to content

Commit

Permalink
fix: take into account all relevant gradle configuration for exhortig…
Browse files Browse the repository at this point in the history
…nore

Signed-off-by: Zvi Grinberg <[email protected]>
  • Loading branch information
zvigrinberg committed Jul 28, 2024
1 parent d5b9aac commit 02e4851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/java_gradle.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export default class Java_gradle extends Base_java {
// Dependency line is of form String Notation
} else {
let depParts
if(depToBeIgnored.match(/^[a-z]+\s/)) {
if(depToBeIgnored.match(/^[a-zA-Z]+\s/)) {
depParts = depToBeIgnored.split(" ")[1].split(":");
}
else {
Expand Down

0 comments on commit 02e4851

Please sign in to comment.