Skip to content

Commit

Permalink
Merge pull request #121 from ftake/fix-java-home-path-error
Browse files Browse the repository at this point in the history
Fix path errors while analyzing packages referencing ${java.home}
  • Loading branch information
loosebazooka authored Apr 22, 2024
2 parents 99a824e + a635f11 commit 10ce370
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public abstract class PropertiesForPom {

PropertiesForPom() {}

private static final List<String> JAVA_PROP_KEYS = List.of("java.version");
private static final List<String> JAVA_PROP_KEYS = List.of("java.version", "java.home");

@Lazy
public Properties get() {
Expand Down

0 comments on commit 10ce370

Please sign in to comment.