BAEL-19967: Migrate spring-shell module to the com.baeldung package

This commit is contained in:
Krzysiek 2019-12-18 21:35:26 +01:00
parent 4465bb6fa9
commit 8b17262844
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung.shell;
package com.baeldung.shell;
import java.io.IOException;
import org.springframework.shell.Bootstrap;

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import java.io.BufferedReader;
import java.io.FileNotFoundException;

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import java.net.MalformedURLException;
import java.net.URL;

View File

@ -8,6 +8,6 @@
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
<context:component-scan base-package="org.baeldung.shell.simple"/>
<context:component-scan base-package="com.baeldung.shell.simple"/>
</beans>

View File

@ -1,4 +1,4 @@
package org.baeldung.shell.simple;
package com.baeldung.shell.simple;
import org.junit.AfterClass;
import org.junit.Assert;