Skip to content

Commit 499e63c

Browse files
committed
Rename spring-shell-autoconfigure to spring-shell-core-autoconfigure
Resolves #1227
1 parent 7d5d4e4 commit 499e63c

File tree

25 files changed

+39
-40
lines changed

25 files changed

+39
-40
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
<module>spring-shell-core</module>
9292
<module>spring-shell-jline</module>
9393
<module>spring-shell-test</module>
94-
<module>spring-shell-autoconfigure</module>
94+
<module>spring-shell-core-autoconfigure</module>
9595
<module>spring-shell-test-autoconfigure</module>
9696
<module>spring-shell-docs</module>
9797
<module>spring-shell-dependencies</module>

spring-shell-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<version>4.0.0-SNAPSHOT</version>
99
</parent>
1010

11-
<artifactId>spring-shell-autoconfigure</artifactId>
12-
<name>Spring Shell Autoconfiguration</name>
11+
<artifactId>spring-shell-core-autoconfigure</artifactId>
12+
<name>Spring Shell Core Autoconfiguration</name>
1313
<packaging>jar</packaging>
14-
<description>Spring Boot Auto Configuration for Spring Shell</description>
14+
<description>Spring Boot Auto Configuration for Spring Shell core module</description>
1515
<url>https://github.com/spring-projects/spring-shell</url>
1616
<organization>
1717
<name>Spring</name>

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/ApplicationRunnerAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/ApplicationRunnerAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.boot;
16+
package org.springframework.shell.core.autoconfigure;
1717

1818
import org.springframework.boot.autoconfigure.AutoConfiguration;
1919
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/CommandRegistryAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/CommandRegistryAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.boot;
16+
package org.springframework.shell.core.autoconfigure;
1717

1818
import java.lang.reflect.Method;
1919
import java.util.Map;

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/ComponentFlowAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/ComponentFlowAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.boot;
16+
package org.springframework.shell.core.autoconfigure;
1717

1818
import org.jline.terminal.Terminal;
1919

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/ComponentFlowCustomizer.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/ComponentFlowCustomizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.boot;
16+
package org.springframework.shell.core.autoconfigure;
1717

1818
import org.springframework.shell.jline.tui.component.flow.ComponentFlow;
1919

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/JLineShellAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/JLineShellAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.shell.boot;
17+
package org.springframework.shell.core.autoconfigure;
1818

1919
import java.io.IOException;
2020
import java.nio.file.Path;

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/ShellRunnerAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/ShellRunnerAutoConfiguration.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.boot;
16+
package org.springframework.shell.core.autoconfigure;
1717

1818
import org.springframework.boot.ApplicationRunner;
1919
import org.springframework.boot.autoconfigure.AutoConfiguration;
@@ -22,7 +22,6 @@
2222
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingClass;
2323
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
2424
import org.springframework.context.annotation.Bean;
25-
import org.springframework.context.annotation.Import;
2625
import org.springframework.shell.core.ConsoleInputProvider;
2726
import org.springframework.shell.core.NonInteractiveShellRunner;
2827
import org.springframework.shell.core.ShellRunner;

spring-shell-autoconfigure/src/main/java/org/springframework/shell/boot/SpringShellAutoConfiguration.java renamed to spring-shell-core-autoconfigure/src/main/java/org/springframework/shell/core/autoconfigure/SpringShellAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.shell.boot;
17+
package org.springframework.shell.core.autoconfigure;
1818

1919
import org.springframework.boot.autoconfigure.AutoConfiguration;
2020
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;

0 commit comments

Comments
 (0)