Skip to content

Commit d6c804d

Browse files
committed
make consoleUserId and consolePassword parameters optional - if not set userId and password are used as default
1 parent 59c6479 commit d6c804d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tooling/conga-aem-maven-plugin/src/main/java/io/wcm/devops/conga/plugins/aem/maven/AbstractContentPackageMojo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ abstract class AbstractContentPackageMojo extends AbstractMojo {
7070
* The user name to authenticate as against the remote CRX system (Felix console).
7171
* Defaults to the value from <code>userId</code>.
7272
*/
73-
@Parameter(property = "console.userId", required = true)
73+
@Parameter(property = "console.userId")
7474
private String consoleUserId;
7575

7676
/**
7777
* The password to authenticate against the remote CRX system (Felix console).
7878
* Defaults to the value from <code>password</code>.
7979
*/
80-
@Parameter(property = "console.password", required = true)
80+
@Parameter(property = "console.password")
8181
private String consolePassword;
8282

8383
/**

0 commit comments

Comments
 (0)