Repository: activemq-artemis Updated Branches: refs/heads/2.6.x ace575ec6 -> 9427d0010
ARTEMIS-2037 Adding 32 bits back on libaio (cherry picked from commit 581ee5bc46ec630265fa35a05262127f0d56a74d) Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9427d001 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9427d001 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9427d001 Branch: refs/heads/2.6.x Commit: 9427d0010bb2ac3ebeb989c4c93e23206e547cbc Parents: ace575e Author: Clebert Suconic <[email protected]> Authored: Fri Aug 17 12:39:30 2018 -0400 Committer: Clebert Suconic <[email protected]> Committed: Fri Aug 17 12:57:00 2018 -0400 ---------------------------------------------------------------------- artemis-native/bin/libartemis-native-32.so | Bin 0 -> 20114 bytes artemis-native/pom.xml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9427d001/artemis-native/bin/libartemis-native-32.so ---------------------------------------------------------------------- diff --git a/artemis-native/bin/libartemis-native-32.so b/artemis-native/bin/libartemis-native-32.so new file mode 100755 index 0000000..2917fc3 Binary files /dev/null and b/artemis-native/bin/libartemis-native-32.so differ http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9427d001/artemis-native/pom.xml ---------------------------------------------------------------------- diff --git a/artemis-native/pom.xml b/artemis-native/pom.xml index 793f470..6fa4d7d 100644 --- a/artemis-native/pom.xml +++ b/artemis-native/pom.xml @@ -82,6 +82,24 @@ <artifactId>maven-resources-plugin</artifactId> <executions> <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>libartemis-native-32.so</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + <execution> <id>copy-resources-64</id> <phase>validate</phase> <goals>
