Created
September 18, 2018 16:09
-
-
Save cdupuis/338608712b4660e26435a7d5a90443d3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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