concord-ansible-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.walmartlabs.concord.server.plugins.ansible</groupId> <artifactId>concord-ansible-plugin</artifactId> <version>2.32.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.walmartlabs.concord.server.plugins.ansible</groupId> <artifactId>parent</artifactId> <version>2.32.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>concord-ansible-plugin</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <dependency> <groupId>com.walmartlabs.concord.server.plugins.ansible</groupId> <artifactId>concord-ansible-plugin-db</artifactId> </dependency> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server-sdk</artifactId> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-sdk</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server-db</artifactId> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-common</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-config</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.spec.javax.ws.rs</groupId> <artifactId>jboss-jaxrs-api_2.1_spec</artifactId> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.2.15</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <!-- Immutables --> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-guava</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server-impl</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </plugin> <plugin> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-maven-plugin</artifactId> <configuration> <outputFileName>swagger</outputFileName> <outputPath>${project.build.directory}/classes/com/walmartlabs/concord/server/plugins/ansible/swagger</outputPath> <outputFormat>YAML</outputFormat> <readAllResources>false</readAllResources> <resourcePackages> <package>com.walmartlabs.concord.server.plugins.ansible</package> </resourcePackages> <configurationFilePath>${project.build.directory}/classes/openapi-ansible-config.yaml</configurationFilePath> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>resolve</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>