Refactor beam invoicing pipeline into its own package

This prepares for the spec11 beam pipeline to live parallel to the invoicing
beam pipeline, for better organization.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=204980582
This commit is contained in:
larryruili 2018-07-17 14:58:56 -07:00 committed by jianglai
parent abfc60ab39
commit 9e53e67128
17 changed files with 10 additions and 1583 deletions

View file

@ -35,7 +35,7 @@ java_library(
visibility = [":allowed-tools"],
deps = [
"//java/google/registry/backup",
"//java/google/registry/beam",
"//java/google/registry/beam/invoicing",
"//java/google/registry/bigquery",
"//java/google/registry/config",
"//java/google/registry/dns",

View file

@ -15,10 +15,10 @@
package google.registry.tools;
import com.beust.jcommander.Parameters;
import google.registry.beam.InvoicingPipeline;
import google.registry.beam.invoicing.InvoicingPipeline;
import javax.inject.Inject;
/** Nomulus command that deploys the {@link google.registry.beam.InvoicingPipeline} template. */
/** Nomulus command that deploys the {@link InvoicingPipeline} template. */
@Parameters(commandDescription = "Deploy the invoicing pipeline to GCS.")
public class DeployInvoicingPipelineCommand implements Command {