apiman-distro-eap7
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.apiman</groupId>
<artifactId>apiman-distro-eap7</artifactId>
<version>1.2.2.Final</version>
</dependency><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>io.apiman</groupId>
<artifactId>apiman-distro</artifactId>
<version>1.2.2.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>apiman-distro-eap7</artifactId>
<packaging>pom</packaging>
<name>apiman-distro-eap7</name>
<dependencies>
<!-- The WildFly 8 distro of APIMan -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>apiman-distro-wildfly10</artifactId>
<type>zip</type>
<classifier>overlay</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>overlay</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>true</attach>
<descriptors>
<descriptor>src/main/assembly/overlay.xml</descriptor>
</descriptors>
<archiverConfig>
<defaultDirectoryMode>0755</defaultDirectoryMode>
</archiverConfig>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>