ansible-modules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.feedzai.ansible</groupId>
<artifactId>ansible-modules</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.feedzai.ansible</groupId>
<artifactId>ansible-modules</artifactId>
<version>1.0.0</version>
<name>Ansible Modules</name>
<description>Feedzai collection of Ansible modules.</description>
<url>https://github.com/feedzai/ansible-modules</url>
<organization>
<name>Feedzai</name>
<url>https://www.feedzai.com</url>
</organization>
<licenses>
<license>
<name>GNU General Public License v3.0+</name>
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Feedzai Customer Success</name>
<url>https://github.com/feedzai/ansible-modules/issues</url>
<organization>Feedzai</organization>
</developer>
</developers>
<scm>
<developerConnection>scm:git:git@github.com:feedzai/ansible-modules.git</developerConnection>
<tag>1.0.0</tag>
<url>https://github.com/feedzai/ansible-modules</url>
</scm>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
<nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version>
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<tarLongFileMode>posix</tarLongFileMode>
<descriptors>
<descriptor>src/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<gpg.defaultKeyring>false</gpg.defaultKeyring>
<gpg.passphrase>${env.PGP_PASS}</gpg.passphrase>
<gpg.homedir>${user.dir}/.gnupg</gpg.homedir>
<gpg.keyname>${env.PGP_KEY_ID}</gpg.keyname>
<gpg.executable>gpg</gpg.executable>
</properties>
</profile>
</profiles>
</project>