Skip to content

Commit f380ba6

Browse files
committed
Exclude Groovy MetaClass from property meta-data
Update `TypeExcludeFilter` to exclude `groovy.lang.MetaClass`. Closes gh-16981
1 parent 826b18f commit f380ba6

File tree

1 file changed

+1
-0
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor

1 file changed

+1
-0
lines changed

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeExcludeFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class TypeExcludeFilter {
3434

3535
TypeExcludeFilter() {
3636
add("com.zaxxer.hikari.IConnectionCustomizer");
37+
add("groovy.lang.MetaClass");
3738
add("groovy.text.markup.MarkupTemplateEngine");
3839
add("java.io.Writer");
3940
add("java.io.PrintWriter");

0 commit comments

Comments
 (0)