From 16164b30a962ff1ff57877bf8b254e7c39ee71c1 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 9 Dec 2014 18:17:09 +0100 Subject: [PATCH] Do not exclude Flyway's MigrationVersion flyway.init and flyway.target are two options that are missing from the meta-data following the change in f0bc3c0. It turns out that both these properties have an additional setter taking a String so they shouldn't be excluded after all Closes gh-2088 --- .../boot/configurationprocessor/TypeExcludeFilter.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeExcludeFilter.java b/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeExcludeFilter.java index d896587ca4..c5b7c0dab8 100644 --- a/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeExcludeFilter.java +++ b/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeExcludeFilter.java @@ -41,7 +41,6 @@ class TypeExcludeFilter { add("groovy.text.markup.MarkupTemplateEngine"); add("org.apache.tomcat.jdbc.pool.PoolConfiguration"); add("org.apache.tomcat.jdbc.pool.Validator"); - add("org.flywaydb.core.api.MigrationVersion"); add("org.flywaydb.core.api.callback.FlywayCallback"); add("org.flywaydb.core.api.resolver.MigrationResolver"); add("org.springframework.http.MediaType");