Skip to content

Commit

Permalink
Move Java package declarations to org.embulk.output.command
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroyuki-sato committed May 13, 2024
1 parent d35c1a2 commit 5922659
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
}

embulkPlugin {
mainClass = "org.embulk.output.CommandFileOutputPlugin"
mainClass = "org.embulk.output.command.CommandFileOutputPlugin"
category = "output"
type = "command"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.embulk.output;
package org.embulk.output.command;

import java.io.FilterOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.embulk.output;
package org.embulk.output.command;

import static org.embulk.output.CommandFileOutputPlugin.buildShell;
import static org.embulk.output.command.CommandFileOutputPlugin.buildShell;
import static org.junit.Assert.assertEquals;

import java.util.Arrays;
Expand Down

0 comments on commit 5922659

Please sign in to comment.