What am I doing wrong?
I am trying to use the maven artifact. I have archiva installed and am trying to run the example (below) but I get the following error:
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "url parsing went wrong 'NoneType' object has no attribute 'find'"}
My playbook:
---
- hosts: localhost
connection: local
tasks:
- name: Get federation artifact
maven_artifact:
group_id: junit
artifact_id: junit
version: 4.11
dest: ./junit-4.11.jar
...
Thanks