|
2 | 2 |
|
3 | 3 | import com.redhat.hacbs.container.analyser.build.LookupBuildInfoCommand; |
4 | 4 | import com.redhat.hacbs.container.analyser.dependencies.AnalyseDependencies; |
5 | | -import com.redhat.hacbs.container.analyser.location.LookupScmLocationCommand; |
6 | 5 | import com.redhat.hacbs.container.build.preprocessor.ant.AntPrepareCommand; |
7 | 6 | import com.redhat.hacbs.container.build.preprocessor.gradle.GradlePrepareCommand; |
8 | 7 | import com.redhat.hacbs.container.build.preprocessor.maven.MavenPrepareCommand; |
9 | 8 | import com.redhat.hacbs.container.build.preprocessor.sbt.SBTPrepareCommand; |
10 | 9 | import com.redhat.hacbs.container.deploy.BuildVerifyCommand; |
11 | | -import com.redhat.hacbs.container.deploy.ContainerTagCommand; |
12 | 10 | import com.redhat.hacbs.container.deploy.CopyArtifactsCommand; |
13 | | -import com.redhat.hacbs.container.deploy.DeployPreBuildImageCommand; |
| 11 | +import com.redhat.hacbs.container.deploy.DeployCommand; |
14 | 12 | import com.redhat.hacbs.container.deploy.DeployPreBuildSourceCommand; |
15 | | -import com.redhat.hacbs.container.deploy.TagDeployCommand; |
16 | 13 | import com.redhat.hacbs.container.verifier.VerifyBuiltArtifactsCommand; |
17 | 14 |
|
18 | 15 | import io.quarkus.picocli.runtime.annotations.TopCommand; |
|
22 | 19 | @CommandLine.Command(mixinStandardHelpOptions = true, subcommands = { |
23 | 20 | AnalyseDependencies.class, |
24 | 21 | AntPrepareCommand.class, |
25 | | - ContainerTagCommand.class, |
26 | 22 | CopyArtifactsCommand.class, |
27 | 23 | BuildVerifyCommand.class, |
28 | | - DeployPreBuildImageCommand.class, |
29 | 24 | GradlePrepareCommand.class, |
30 | 25 | DeployPreBuildSourceCommand.class, |
31 | 26 | LookupBuildInfoCommand.class, |
32 | | - LookupScmLocationCommand.class, |
33 | | - TagDeployCommand.class, |
| 27 | + DeployCommand.class, |
34 | 28 | MavenPrepareCommand.class, |
35 | 29 | SBTPrepareCommand.class, |
36 | 30 | VerifyBuiltArtifactsCommand.class |
|
0 commit comments