Migrate auto-configuration registration

- Move auto-configs from spring.factories to imports file.
- Relates #523
This commit is contained in:
Janne Valkealahti
2022-09-22 16:17:25 +01:00
parent a1bd979548
commit 23df374660
2 changed files with 16 additions and 17 deletions

View File

@@ -1,17 +0,0 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
org.springframework.shell.boot.ExitCodeAutoConfiguration,\
org.springframework.shell.boot.ShellContextAutoConfiguration,\
org.springframework.shell.boot.SpringShellAutoConfiguration,\
org.springframework.shell.boot.ShellRunnerAutoConfiguration,\
org.springframework.shell.boot.ApplicationRunnerAutoConfiguration,\
org.springframework.shell.boot.CommandCatalogAutoConfiguration,\
org.springframework.shell.boot.LineReaderAutoConfiguration,\
org.springframework.shell.boot.CompleterAutoConfiguration,\
org.springframework.shell.boot.UserConfigAutoConfiguration,\
org.springframework.shell.boot.JLineAutoConfiguration,\
org.springframework.shell.boot.JLineShellAutoConfiguration,\
org.springframework.shell.boot.ParameterResolverAutoConfiguration,\
org.springframework.shell.boot.StandardAPIAutoConfiguration,\
org.springframework.shell.boot.ThemingAutoConfiguration,\
org.springframework.shell.boot.StandardCommandsAutoConfiguration,\
org.springframework.shell.boot.ComponentFlowAutoConfiguration

View File

@@ -0,0 +1,16 @@
org.springframework.shell.boot.ExitCodeAutoConfiguration
org.springframework.shell.boot.ShellContextAutoConfiguration
org.springframework.shell.boot.SpringShellAutoConfiguration
org.springframework.shell.boot.ShellRunnerAutoConfiguration
org.springframework.shell.boot.ApplicationRunnerAutoConfiguration
org.springframework.shell.boot.CommandCatalogAutoConfiguration
org.springframework.shell.boot.LineReaderAutoConfiguration
org.springframework.shell.boot.CompleterAutoConfiguration
org.springframework.shell.boot.UserConfigAutoConfiguration
org.springframework.shell.boot.JLineAutoConfiguration
org.springframework.shell.boot.JLineShellAutoConfiguration
org.springframework.shell.boot.ParameterResolverAutoConfiguration
org.springframework.shell.boot.StandardAPIAutoConfiguration
org.springframework.shell.boot.ThemingAutoConfiguration
org.springframework.shell.boot.StandardCommandsAutoConfiguration
org.springframework.shell.boot.ComponentFlowAutoConfiguration