Fix FailureAnalyzer package tangle

Move `IncompatibleConfigurationFailureAnalyzer` to fix a package tangle.

Closes gh-23385
This commit is contained in:
Phillip Webb
2020-09-16 23:37:21 -07:00
parent 6509310fdb
commit 10ad53afbd
3 changed files with 3 additions and 5 deletions

View File

@@ -14,11 +14,10 @@
* limitations under the License.
*/
package org.springframework.boot.diagnostics.analyzer;
package org.springframework.boot.context.properties;
import java.util.stream.Collectors;
import org.springframework.boot.context.properties.IncompatibleConfigurationException;
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer;
import org.springframework.boot.diagnostics.FailureAnalysis;

View File

@@ -52,6 +52,7 @@ org.springframework.boot.reactor.DebugAgentEnvironmentPostProcessor
# Failure Analyzers
org.springframework.boot.diagnostics.FailureAnalyzer=\
org.springframework.boot.context.properties.IncompatibleConfigurationFailureAnalyzer,\
org.springframework.boot.context.properties.NotConstructorBoundInjectionFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.BeanCurrentlyInCreationFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.BeanDefinitionOverrideFailureAnalyzer,\
@@ -64,7 +65,6 @@ org.springframework.boot.diagnostics.analyzer.NoSuchMethodFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.NoUniqueBeanDefinitionFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.PortInUseFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.ValidationExceptionFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.IncompatibleConfigurationFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyNameFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyValueFailureAnalyzer,\
org.springframework.boot.diagnostics.analyzer.PatternParseFailureAnalyzer,\

View File

@@ -14,11 +14,10 @@
* limitations under the License.
*/
package org.springframework.boot.diagnostics.analyzer;
package org.springframework.boot.context.properties;
import org.junit.jupiter.api.Test;
import org.springframework.boot.context.properties.IncompatibleConfigurationException;
import org.springframework.boot.diagnostics.FailureAnalysis;
import static org.assertj.core.api.Assertions.assertThat;