Skip to content

Commit

Permalink
Make nexus_username/password optional
Browse files Browse the repository at this point in the history
  • Loading branch information
interatom committed Dec 13, 2017
1 parent a6251c3 commit 0870080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/download/nexus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
repository_url: "{{ item.repository_url }}"
dest: "{{ aem_download_path }}/{{ aem_quickstart_name }}"
extension: jar
username: "{{ nexus_username }}"
password: "{{ nexus_password }}"
username: "{{ nexus_username | default(omit) }}"
password: "{{ nexus_password | default(omit) }}"
version: "{{ item.version | default(aem_version_short) }}"
with_items: "{{ aem_mvn_coordinates }}"

0 comments on commit 0870080

Please sign in to comment.