From e3b0ce40c9a2d811cef79bcda144f2a96d59b901 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 5 Dec 2018 16:05:19 +0100 Subject: [PATCH] Fix the maven_artifact options. --- smartgears/gcat/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartgears/gcat/tasks/main.yml b/smartgears/gcat/tasks/main.yml index 727fd9d..1f18728 100644 --- a/smartgears/gcat/tasks/main.yml +++ b/smartgears/gcat/tasks/main.yml @@ -14,7 +14,7 @@ - block: - name: Get the catalogue-ws - maven_artifact: artifact_id={{ gcat_name }} version={{ gcat_version | default(omit) }} group_id={{ gcat_group_id }} extension={{ gcat_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ gcat_file }} + maven_artifact: artifact_id={{ gcat_name }} version={{ gcat_version | default(omit) }} group_id={{ gcat_group_id }} extension={{ gcat_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ gcat_file }} verify_checksum=always register: gcat_download - name: Remove the old catalogue ws files