Skip to content

Commit 0870080

Browse files
committed
Make nexus_username/password optional
1 parent a6251c3 commit 0870080

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/download/nexus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
repository_url: "{{ item.repository_url }}"
1212
dest: "{{ aem_download_path }}/{{ aem_quickstart_name }}"
1313
extension: jar
14-
username: "{{ nexus_username }}"
15-
password: "{{ nexus_password }}"
14+
username: "{{ nexus_username | default(omit) }}"
15+
password: "{{ nexus_password | default(omit) }}"
1616
version: "{{ item.version | default(aem_version_short) }}"
1717
with_items: "{{ aem_mvn_coordinates }}"

0 commit comments

Comments
 (0)