Skip to content

Commit

Permalink
Perform Reactor native classpath checks at build time
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Jul 6, 2022
1 parent a122a0e commit cdf01ed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class ConstantFieldSubstitutionProcessor extends SubstitutionProcessor {
private static Pattern[] patterns = {
Pattern.compile(Pattern.quote("org.springframework.core.NativeDetector#imageCode")),
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*Present"),
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*_PRESENT")
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*_PRESENT"),
Pattern.compile(Pattern.quote("reactor.") + ".*#.*Available")
};

private final ThrowawayClassLoader throwawayClassLoader;
Expand Down

0 comments on commit cdf01ed

Please sign in to comment.