Fixed mispelled package name 'googlesrouce' Change-Id: I8c23369a203372016e7a8af9ed4519dcacb6049d
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/GuiceHttpModule.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/GuiceHttpModule.java index e608e38..1b4bc0b 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/GuiceHttpModule.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/GuiceHttpModule.java
@@ -29,12 +29,12 @@ import com.googlesource.gerrit.plugins.github.velocity.VelocityStaticServlet; import com.googlesource.gerrit.plugins.github.velocity.VelocityViewServlet; import com.googlesource.gerrit.plugins.github.wizard.VelocityControllerServlet; -import com.googlesrouce.gerrit.plugins.github.git.CreateProjectStep; -import com.googlesrouce.gerrit.plugins.github.git.GitCloneStep; -import com.googlesrouce.gerrit.plugins.github.git.GitHubRepository; -import com.googlesrouce.gerrit.plugins.github.git.GitImporter; -import com.googlesrouce.gerrit.plugins.github.git.PullRequestImportJob; -import com.googlesrouce.gerrit.plugins.github.git.ReplicateProjectStep; +import com.googlesource.gerrit.plugins.github.git.CreateProjectStep; +import com.googlesource.gerrit.plugins.github.git.GitCloneStep; +import com.googlesource.gerrit.plugins.github.git.GitHubRepository; +import com.googlesource.gerrit.plugins.github.git.GitImporter; +import com.googlesource.gerrit.plugins.github.git.PullRequestImportJob; +import com.googlesource.gerrit.plugins.github.git.ReplicateProjectStep; public class GuiceHttpModule extends ServletModule {
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/AbstractCloneJob.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/AbstractCloneJob.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/AbstractCloneJob.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/AbstractCloneJob.java index f7af6cd..86e60b8 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/AbstractCloneJob.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/AbstractCloneJob.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.slf4j.Logger; import org.slf4j.LoggerFactory;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/BatchImporter.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/BatchImporter.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/BatchImporter.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/BatchImporter.java index 258c610..e028979 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/BatchImporter.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/BatchImporter.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.util.Collection; import java.util.concurrent.ConcurrentHashMap;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/CreateProjectStep.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/CreateProjectStep.java similarity index 99% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/CreateProjectStep.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/CreateProjectStep.java index 199bcc0..8202be5 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/CreateProjectStep.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/CreateProjectStep.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.eclipse.jgit.lib.ProgressMonitor; import org.slf4j.Logger;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ErrorJob.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ErrorJob.java similarity index 92% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ErrorJob.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ErrorJob.java index 09605ec..e441875 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ErrorJob.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ErrorJob.java
@@ -11,9 +11,9 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; -import com.googlesrouce.gerrit.plugins.github.git.GitJobStatus.Code; +import com.googlesource.gerrit.plugins.github.git.GitJobStatus.Code; public class ErrorJob extends AbstractCloneJob implements GitJob {
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneFailedException.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneFailedException.java similarity index 97% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneFailedException.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneFailedException.java index 8770148..9a47143 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneFailedException.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneFailedException.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.eclipse.jgit.api.errors.JGitInternalException;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneStep.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneStep.java similarity index 98% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneStep.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneStep.java index a7d3b73..464f252 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitCloneStep.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitCloneStep.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.File; import java.io.IOException;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java similarity index 95% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java index 9ef959f..5c4e9d4 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationAlreadyExistsException.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.File;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationNotWritableException.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationNotWritableException.java similarity index 95% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationNotWritableException.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationNotWritableException.java index 0faad97..ec55861 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitDestinationNotWritableException.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitDestinationNotWritableException.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.File;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitException.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitException.java similarity index 95% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitException.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitException.java index 1c3132f..3b60bb7 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitException.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitException.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.IOException;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitHubRepository.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitHubRepository.java similarity index 99% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitHubRepository.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitHubRepository.java index dbf80f0..0c111d7 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitHubRepository.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitHubRepository.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.IOException; import java.net.URL;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImportJob.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImportJob.java similarity index 95% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImportJob.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImportJob.java index 6b8c59b..0535539 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImportJob.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImportJob.java
@@ -11,11 +11,11 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.eclipse.jgit.lib.ProgressMonitor; -import com.googlesrouce.gerrit.plugins.github.git.GitJobStatus.Code; +import com.googlesource.gerrit.plugins.github.git.GitJobStatus.Code; public class GitImportJob extends AbstractCloneJob implements Runnable, ProgressMonitor, GitJob { @@ -93,7 +93,7 @@ /* * (non-Javadoc) * - * @see com.googlesrouce.gerrit.plugins.github.git.CloneJob#getStatus() + * @see com.googlesource.gerrit.plugins.github.git.CloneJob#getStatus() */ @Override public GitJobStatus getStatus() {
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImporter.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImporter.java similarity index 97% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImporter.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImporter.java index d0671fb..4c192a7 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitImporter.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitImporter.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.slf4j.Logger; import org.slf4j.LoggerFactory;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJob.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJob.java similarity index 93% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJob.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJob.java index 2226aea..404c22e 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJob.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJob.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; public interface GitJob extends Runnable {
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJobStatus.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJobStatus.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJobStatus.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJobStatus.java index 22380c1..0401409 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/GitJobStatus.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/GitJobStatus.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.PrintWriter;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ImportStep.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ImportStep.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ImportStep.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ImportStep.java index 572dfc1..9348a16 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ImportStep.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ImportStep.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.eclipse.jgit.lib.ProgressMonitor;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobCancelledException.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobCancelledException.java similarity index 93% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobCancelledException.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobCancelledException.java index d082a7b..db8107e 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobCancelledException.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobCancelledException.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; public class JobCancelledException extends Exception { private static final long serialVersionUID = 4358474273091335160L;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobExecutor.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobExecutor.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobExecutor.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobExecutor.java index 7462fec..731f2c8 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/JobExecutor.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/JobExecutor.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.util.Random; import java.util.concurrent.Executors;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestCreateChange.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestCreateChange.java similarity index 99% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestCreateChange.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestCreateChange.java index 0d21ea8..c1e0ca8 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestCreateChange.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestCreateChange.java
@@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.IOException; import java.util.Iterator;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportJob.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportJob.java similarity index 98% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportJob.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportJob.java index ca392a1..f9c9399 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportJob.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportJob.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.IOException; import java.util.List; @@ -58,7 +58,7 @@ import com.googlesource.gerrit.plugins.github.GitHubURL; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; import com.googlesource.gerrit.plugins.github.oauth.ScopedProvider; -import com.googlesrouce.gerrit.plugins.github.git.GitJobStatus.Code; +import com.googlesource.gerrit.plugins.github.git.GitJobStatus.Code; public class PullRequestImportJob implements GitJob, ProgressMonitor {
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportType.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportType.java similarity index 92% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportType.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportType.java index f420d1c..7c02c6a 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImportType.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImportType.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; public enum PullRequestImportType { Commits,
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImporter.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImporter.java similarity index 96% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImporter.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImporter.java index 2cbc21e..7478571 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/PullRequestImporter.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/PullRequestImporter.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.slf4j.Logger; import org.slf4j.LoggerFactory;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicateProjectStep.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicateProjectStep.java similarity index 97% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicateProjectStep.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicateProjectStep.java index fe93d67..50cf894 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicateProjectStep.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicateProjectStep.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import org.eclipse.jgit.lib.ProgressMonitor; import org.slf4j.Logger;
diff --git a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicationConfig.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicationConfig.java similarity index 97% rename from github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicationConfig.java rename to github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicationConfig.java index 79c9324..4b6bb97 100644 --- a/github-plugin/src/main/java/com/googlesrouce/gerrit/plugins/github/git/ReplicationConfig.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/ReplicationConfig.java
@@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -package com.googlesrouce.gerrit.plugins.github.git; +package com.googlesource.gerrit.plugins.github.git; import java.io.File; import java.io.IOException;
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/JobStatusController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/JobStatusController.java index 9d1a917..966f33f 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/JobStatusController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/JobStatusController.java
@@ -22,9 +22,9 @@ import com.google.common.collect.Lists; import com.google.gson.Gson; import com.google.gson.stream.JsonWriter; -import com.googlesrouce.gerrit.plugins.github.git.BatchImporter; -import com.googlesrouce.gerrit.plugins.github.git.GitJob; -import com.googlesrouce.gerrit.plugins.github.git.GitJobStatus; +import com.googlesource.gerrit.plugins.github.git.BatchImporter; +import com.googlesource.gerrit.plugins.github.git.GitJob; +import com.googlesource.gerrit.plugins.github.git.GitJobStatus;
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportController.java index 14f6741..43d9924 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportController.java
@@ -25,8 +25,8 @@ import com.google.inject.Provider; import com.google.inject.Singleton; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; -import com.googlesrouce.gerrit.plugins.github.git.PullRequestImportType; -import com.googlesrouce.gerrit.plugins.github.git.PullRequestImporter; +import com.googlesource.gerrit.plugins.github.git.PullRequestImportType; +import com.googlesource.gerrit.plugins.github.git.PullRequestImporter; @Singleton public class PullRequestImportController implements VelocityController {
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportStatusController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportStatusController.java index 0866901..dad9597 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportStatusController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/PullRequestImportStatusController.java
@@ -23,7 +23,7 @@ import com.google.inject.Inject; import com.google.inject.Provider; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; -import com.googlesrouce.gerrit.plugins.github.git.PullRequestImporter; +import com.googlesource.gerrit.plugins.github.git.PullRequestImporter; public class PullRequestImportStatusController extends JobStatusController implements VelocityController {
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneCancelController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneCancelController.java index 8e78ca2..01d919c 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneCancelController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneCancelController.java
@@ -24,7 +24,7 @@ import com.google.inject.Singleton; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; import com.googlesource.gerrit.plugins.github.oauth.ScopedProvider; -import com.googlesrouce.gerrit.plugins.github.git.GitImporter; +import com.googlesource.gerrit.plugins.github.git.GitImporter; @Singleton public class RepositoriesCloneCancelController implements VelocityController {
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneController.java index 88f1abe..e656862 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneController.java
@@ -25,7 +25,7 @@ import com.google.inject.Inject; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; import com.googlesource.gerrit.plugins.github.oauth.ScopedProvider; -import com.googlesrouce.gerrit.plugins.github.git.GitImporter; +import com.googlesource.gerrit.plugins.github.git.GitImporter; public class RepositoriesCloneController implements VelocityController { private static final String REPO_PARAM_PREFIX = "repo_";
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneStatusController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneStatusController.java index 033f3cb..a2ead75 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneStatusController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/RepositoriesCloneStatusController.java
@@ -24,7 +24,7 @@ import com.google.inject.Singleton; import com.googlesource.gerrit.plugins.github.oauth.GitHubLogin; import com.googlesource.gerrit.plugins.github.oauth.ScopedProvider; -import com.googlesrouce.gerrit.plugins.github.git.GitImporter; +import com.googlesource.gerrit.plugins.github.git.GitImporter; @Singleton public class RepositoriesCloneStatusController extends JobStatusController implements VelocityController {