Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.09 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.09 KB

Ansible Modules

Build Status

Feedzai collection of non core Ansible modules.

How-to

Following the directory layout best practices these modules should go in the library folder of the root.

Maven

Add dependency (to pom.xml):

<dependency>
    <groupId>com.feedzai.ansible</groupId>
    <artifactId>ansible-modules</artifactId>
    <version>${ansible-modules.version}</version>
    <classifier>dist</classifier>
    <type>tar.gz</type>
</dependency>

Using maven-assembly-plugin you can unpack the dependency in the desired folder (in dist.xml):

<dependencySet>
    <useProjectArtifact>false</useProjectArtifact>
    <useTransitiveDependencies>false</useTransitiveDependencies>
    <outputDirectory>library</outputDirectory>
    <unpack>true</unpack>
    <includes>
        <include>com.feedzai.ansible:ansible-modules</include>
    </includes>
</dependencySet>