Skip to content

Instantly share code, notes, and snippets.

@cdupuis
Created September 18, 2018 16:09
Show Gist options
  • Save cdupuis/338608712b4660e26435a7d5a90443d3 to your computer and use it in GitHub Desktop.
Save cdupuis/338608712b4660e26435a7d5a90443d3 to your computer and use it in GitHub Desktop.
const autofix = new Autofix().with(AddDockerfile);
const version = new Version().withVersioner(MavenProjectVersioner);
const build = new Build().with({
builder: new MavenBuilder(sdm),
progressReporter: MavenProgressReporter,
});
const dockerBuild = new DockerBuild().with({
preparations: [MavenVersionPreparation, MavenPackage],
options: { push: false },
});
const kubernetesDeploy = new KubernetesDeploy({ environment: "testing" });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment