activemq-artemis/activemq-native/pom.xml

129 lines
4.6 KiB
XML
Raw Normal View History

<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/maven-v4_0_0.xsd">
<name>ActiveMQ6 Native POM</name>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-pom</artifactId>
<version>6.0.0-SNAPSHOT</version>
</parent>
<artifactId>activemq-native</artifactId>
<packaging>${native-package-type}</packaging>
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-commons</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/target/output/</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<!-- We don't currently have a 32-bit shared object in the repo which means if this is enabled the 64-bit
shared object won't be copied properly. -->
<!--execution>
<id>copy-resources-32</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/output/lib/linux-i686/</outputDirectory>
<resources>
<resource>
<directory>bin/</directory>
<includes>
<include>libactiveMQAIO32.so</include>
</includes>
</resource>
</resources>
</configuration>
</execution-->
<execution>
<id>copy-resources-64</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/output/lib/linux-x86_64/</outputDirectory>
<resources>
<resource>
<directory>bin/</directory>
<includes>
<include>libactivemqAIO64.so</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native-build</id>
<properties>
<native-package-type>nar</native-package-type>
</properties>
<build>
<plugins>
<plugin>
<!-- Not officially released into Central Maven yet,
for now you have to download the snapshot with
git clone https://github.com/maven-nar/nar-maven-plugin.git
cd nar-maven-plugin
mvn install
-->
<groupId>com.github.maven-nar</groupId>
<artifactId>nar-maven-plugin</artifactId>
<version>3.0.0</version>
<extensions>true</extensions>
<configuration>
<java>
<include>true</include>
</java>
<c>
<systemIncludePaths>
</systemIncludePaths>
</c>
<linker>
<sysLibs>
<sysLib>
<name>aio</name>
</sysLib>
</sysLibs>
</linker>
<libraries>
<library>
<type>jni</type>
<narSystemPackage>org.apache.activemq.core.libaio</narSystemPackage>
</library>
</libraries>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<native-package-type>jar</native-package-type>
<activemq.basedir>${project.basedir}/..</activemq.basedir>
</properties>
</project>