Skip to content

Commit 451d006

Browse files
committed
Change package
1 parent 4109156 commit 451d006

28 files changed

Lines changed: 56 additions & 57 deletions

src/it/java/org/seedstack/seed/shell/ConnectionIT.java renamed to src/it/java/org/seedstack/shell/ConnectionIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell;
8+
package org.seedstack.shell;
99

1010
import net.schmizz.sshj.SSHClient;
1111
import net.schmizz.sshj.connection.channel.direct.Session;

src/it/java/org/seedstack/seed/shell/ShellIT.java renamed to src/it/java/org/seedstack/shell/ShellIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell;
8+
package org.seedstack.shell;
99

1010
import net.schmizz.sshj.SSHClient;
1111
import net.schmizz.sshj.connection.channel.direct.Session;

src/it/java/org/seedstack/seed/shell/internal/commands/AllowedSecuredTestCommand.java renamed to src/it/java/org/seedstack/shell/internal/commands/AllowedSecuredTestCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal.commands;
8+
package org.seedstack.shell.internal.commands;
99

1010
import org.seedstack.seed.security.RequiresRoles;
1111
import org.seedstack.seed.spi.command.Command;

src/it/java/org/seedstack/seed/shell/internal/commands/CollectionTestCommand.java renamed to src/it/java/org/seedstack/shell/internal/commands/CollectionTestCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal.commands;
8+
package org.seedstack.shell.internal.commands;
99

1010
import org.seedstack.seed.spi.command.Command;
1111
import org.seedstack.seed.spi.command.CommandDefinition;

src/it/java/org/seedstack/seed/shell/internal/commands/DeniedSecuredTestCommand.java renamed to src/it/java/org/seedstack/shell/internal/commands/DeniedSecuredTestCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal.commands;
8+
package org.seedstack.shell.internal.commands;
99

1010
import org.seedstack.seed.security.RequiresRoles;
1111
import org.seedstack.seed.spi.command.Command;

src/it/java/org/seedstack/seed/shell/internal/commands/ErroneousTestCommand.java renamed to src/it/java/org/seedstack/shell/internal/commands/ErroneousTestCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal.commands;
8+
package org.seedstack.shell.internal.commands;
99

1010
import org.seedstack.seed.spi.command.Command;
1111
import org.seedstack.seed.spi.command.CommandDefinition;

src/it/java/org/seedstack/seed/shell/internal/commands/WithOptionsTestCommand.java renamed to src/it/java/org/seedstack/shell/internal/commands/WithOptionsTestCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal.commands;
8+
package org.seedstack.shell.internal.commands;
99

1010
import org.seedstack.seed.spi.command.Command;
1111
import org.seedstack.seed.spi.command.CommandDefinition;

src/main/java/org/seedstack/seed/shell/ShellConfig.java renamed to src/main/java/org/seedstack/shell/ShellConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell;
8+
package org.seedstack.shell;
99

1010

1111
import org.seedstack.coffig.Config;

src/main/java/org/seedstack/seed/shell/internal/AbstractShell.java renamed to src/main/java/org/seedstack/shell/internal/AbstractShell.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal;
8+
package org.seedstack.shell.internal;
99

1010
import com.google.common.base.Strings;
1111
import org.apache.commons.cli.CommandLine;
@@ -16,7 +16,7 @@
1616
import org.apache.commons.cli.ParseException;
1717
import org.apache.sshd.server.ExitCallback;
1818
import org.seedstack.seed.CommandRegistry;
19-
import org.seedstack.shed.exception.SeedException;
19+
import org.seedstack.seed.SeedException;
2020
import org.seedstack.seed.spi.command.Command;
2121

2222
import javax.inject.Inject;

src/main/java/org/seedstack/seed/shell/internal/CRLFOutputStream.java renamed to src/main/java/org/seedstack/shell/internal/CRLFOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
8-
package org.seedstack.seed.shell.internal;
8+
package org.seedstack.shell.internal;
99

1010
import java.io.FilterOutputStream;
1111
import java.io.IOException;

0 commit comments

Comments
 (0)