File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
java-components/cli/src/main/java/com/redhat/hacbs/cli/driver Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,12 @@ public abstract class Base {
2828 @ CommandLine .Option (names = "-s" , description = "Build Script" , required = true )
2929 String buildScript ;
3030
31- @ CommandLine .Option (names = "-d " , description = "Deploy URL" , required = true )
31+ @ CommandLine .Option (names = "--deploy " , description = "Deploy URL" , required = true )
3232 String deploy ;
3333
34+ @ CommandLine .Option (names = "--dependencies" , description = "Dependencies URL" , required = true )
35+ String dependencies ;
36+
3437 @ ConfigProperty (name = "access.token" )
3538 Optional <String > accessToken ;
3639
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void run() {
3939 .javaVersion (javaVersion )
4040 .buildScript (buildScript )
4141 .repositoryDeployUrl (deploy )
42- .repositoryDependencyUrl (deploy )
42+ .repositoryDependencyUrl (dependencies )
4343 .repositoryBuildContentId ("test-maven-konflux-int-0001" )
4444 .build ();
4545 try {
You can’t perform that action at this time.
0 commit comments