ansible.builtin.maven_artifact (v2.4.4.0-1) — module

Downloads an Artifact from a Maven Repository

| "added in version" 2.0 of ansible.builtin"

Authors: Chris Schmidt (@chrisisbeef)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.4.4.0.post1

Description

Downloads an artifact from a maven repository given the maven coordinates provided to the module.

Can retrieve snapshots or release versions of the artifact and will resolve the latest available version if one is not available.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Download the latest version of the JUnit framework artifact from Maven Central
- maven_artifact:
    group_id: junit
    artifact_id: junit
    dest: /tmp/junit-latest.jar
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Download JUnit 4.11 from Maven Central
- maven_artifact:
    group_id: junit
    artifact_id: junit
    version: 4.11
    dest: /tmp/junit-4.11.jar
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Download an artifact from a private repository requiring authentication
- maven_artifact:
    group_id: com.company
    artifact_id: library-name
    repository_url: 'https://repo.company.com/maven'
    username: user
    password: pass
    dest: /tmp/library-name-latest.jar
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Download a WAR File to the Tomcat webapps directory to be deployed
- maven_artifact:
    group_id: com.company
    artifact_id: web-app
    extension: war
    repository_url: 'https://repo.company.com/maven'
    dest: /var/lib/tomcat7/webapps/web-app.war
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Keep a downloaded artifact's name, i.e. retain the version
- maven_artifact:
    version: latest
    artifact_id: spring-core
    group_id: org.springframework
    dest: /tmp/
    keep_name: yes

Inputs

    
dest:
    default: false
    description:
    - The path where the artifact should be written to
    - If file mode or ownerships are specified and destination path already exists, they
      affect the downloaded file
    required: true

mode:
    description:
    - The permissions the resulting filesystem object should have.
    - For those used to I(/usr/bin/chmod) remember that modes are actually octal numbers.
      You must give Ansible enough information to parse them correctly. For consistent
      results, quote octal numbers (for example, V('644') or V('1777')) so Ansible receives
      a string and can do its own conversion from string into number. Adding a leading
      zero (for example, V(0755)) works sometimes, but can fail in loops and some other
      circumstances.
    - Giving Ansible a number without following either of these rules will end up with
      a decimal number which will have unexpected results.
    - As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, V(u+rwx)
      or V(u=rw,g=r,o=r)).
    - If O(mode) is not specified and the destination filesystem object B(does not) exist,
      the default C(umask) on the system will be used when setting the mode for the newly
      created filesystem object.
    - If O(mode) is not specified and the destination filesystem object B(does) exist,
      the mode of the existing filesystem object will be used.
    - Specifying O(mode) is the best way to ensure filesystem objects are created with
      the correct permissions. See CVE-2020-1736 for further details.
    type: raw

group:
    description:
    - Name of the group that should own the filesystem object, as would be fed to I(chown).
    - When left unspecified, it uses the current group of the current user unless you
      are root, in which case it can preserve the previous ownership.
    type: str

owner:
    description:
    - Name of the user that should own the filesystem object, as would be fed to I(chown).
    - When left unspecified, it uses the current user unless you are root, in which case
      it can preserve the previous ownership.
    - Specifying a numeric username will be assumed to be a user ID and not a username.
      Avoid numeric usernames to avoid this confusion.
    type: str

state:
    choices:
    - present
    - absent
    default: present
    description:
    - The desired state of the artifact
    required: true

serole:
    description:
    - The role part of the SELinux filesystem object context.
    - When set to V(_default), it will use the C(role) portion of the policy if available.
    type: str

setype:
    description:
    - The type part of the SELinux filesystem object context.
    - When set to V(_default), it will use the C(type) portion of the policy if available.
    type: str

seuser:
    description:
    - The user part of the SELinux filesystem object context.
    - By default it uses the V(system) policy, where applicable.
    - When set to V(_default), it will use the C(user) portion of the policy if available.
    type: str

selevel:
    description:
    - The level part of the SELinux filesystem object context.
    - This is the MLS/MCS attribute, sometimes known as the C(range).
    - When set to V(_default), it will use the C(level) portion of the policy if available.
    type: str

timeout:
    default: 10
    description:
    - Specifies a timeout in seconds for the connection attempt
    required: false
    version_added: '2.3'
    version_added_collection: ansible.builtin

version:
    default: latest
    description:
    - The maven version coordinate
    required: false

group_id:
    description:
    - The Maven groupId coordinate
    required: true

password:
    aliases:
    - aws_secret_access_key
    default: null
    description:
    - The password to authenticate with to the Maven Repository. Use AWS secret access
      key of the repository is hosted on S3
    required: false

username:
    aliases:
    - aws_secret_key
    default: null
    description:
    - The username to authenticate as to the Maven Repository. Use AWS secret key of the
      repository is hosted on S3
    required: false

extension:
    default: jar
    description:
    - The maven type/extension coordinate
    required: false

keep_name:
    choices:
    - 'yes'
    - 'no'
    default: 'no'
    description:
    - If C(yes), the downloaded artifact's name is preserved, i.e the version number remains
      part of it.
    - This option only has effect when C(dest) is a directory and C(version) is set to
      C(latest).
    required: false
    version_added: '2.4'
    version_added_collection: ansible.builtin

attributes:
    aliases:
    - attr
    description:
    - The attributes the resulting filesystem object should have.
    - To get supported flags look at the man page for I(chattr) on the target system.
    - This string should contain the attributes in the same order as the one displayed
      by I(lsattr).
    - The C(=) operator is assumed as default, otherwise C(+) or C(-) operators need to
      be included in the string.
    type: str
    version_added: '2.3'
    version_added_collection: ansible.builtin

classifier:
    default: null
    description:
    - The maven classifier coordinate
    required: false

artifact_id:
    description:
    - The maven artifactId coordinate
    required: true

unsafe_writes:
    default: false
    description:
    - Influence when to use atomic operation to prevent data corruption or inconsistent
      reads from the target filesystem object.
    - By default this module uses atomic operations to prevent data corruption or inconsistent
      reads from the target filesystem objects, but sometimes systems are configured or
      just broken in ways that prevent this. One example is docker mounted filesystem
      objects, which cannot be updated atomically from inside the container and can only
      be written in an unsafe manner.
    - This option allows Ansible to fall back to unsafe methods of updating filesystem
      objects when atomic operations fail (however, it doesn't force Ansible to perform
      unsafe writes).
    - IMPORTANT! Unsafe writes are subject to race conditions and can lead to data corruption.
    type: bool
    version_added: '2.2'
    version_added_collection: ansible.builtin

repository_url:
    default: http://repo1.maven.org/maven2
    description:
    - The URL of the Maven Repository to download from.
    - Use s3://... if the repository is hosted on Amazon S3, added in version 2.2.
    required: false

validate_certs:
    choices:
    - 'yes'
    - 'no'
    default: 'yes'
    description:
    - If C(no), SSL certificates will not be validated. This should only be set to C(no)
      when no other option exists.
    required: false
    version_added: 1.9.3
    version_added_collection: ansible.builtin