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 {
28
28
@ CommandLine .Option (names = "-s" , description = "Build Script" , required = true )
29
29
String buildScript ;
30
30
31
- @ CommandLine .Option (names = "-d " , description = "Deploy URL" , required = true )
31
+ @ CommandLine .Option (names = "--deploy " , description = "Deploy URL" , required = true )
32
32
String deploy ;
33
33
34
+ @ CommandLine .Option (names = "--dependencies" , description = "Dependencies URL" , required = true )
35
+ String dependencies ;
36
+
34
37
@ ConfigProperty (name = "access.token" )
35
38
Optional <String > accessToken ;
36
39
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void run() {
39
39
.javaVersion (javaVersion )
40
40
.buildScript (buildScript )
41
41
.repositoryDeployUrl (deploy )
42
- .repositoryDependencyUrl (deploy )
42
+ .repositoryDependencyUrl (dependencies )
43
43
.repositoryBuildContentId ("test-maven-konflux-int-0001" )
44
44
.build ();
45
45
try {
You can’t perform that action at this time.
0 commit comments