Repository: activemq-artemis
Updated Branches:
  refs/heads/master 20c0c73e8 -> 5cd3a4754


ARTEMIS-327 Remove native binaries from src distro


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/ce57a715
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/ce57a715
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/ce57a715

Branch: refs/heads/master
Commit: ce57a715849a2cfcb5aa4315835be246ca3d0a12
Parents: 20c0c73
Author: Martyn Taylor <[email protected]>
Authored: Wed Dec 23 11:22:00 2015 +0000
Committer: Martyn Taylor <[email protected]>
Committed: Wed Dec 23 11:38:24 2015 +0000

----------------------------------------------------------------------
 README.md                                                  | 8 ++++++++
 artemis-distribution/src/main/assembly/source-assembly.xml | 1 +
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ce57a715/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index a1ec823..782589b 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,14 @@ This file describes some minimum 'stuff one needs to know' to 
get started coding
 For details about the modifying the code, building the project, running tests, 
IDE integration, etc. see
 our [Hacking Guide](./docs/hacking-guide/en/SUMMARY.md).
 
+## Building the ASYNC IO library
+
+ActiveMQ Artemis provides two journal persistence types, NIO (which uses the 
Java NIO libraries), and ASYNCIO which interacts with the linux kernel libaio 
library.   The ASYNCIO journal type should be used where possible as it is far 
superior in terms of performance.
+
+ActiveMQ Artemis does not ship with the Artemis Native ASYNCIO library in the 
source distribution.  These need to be built prior to running "mvn install", to 
ensure that the ASYNCIO journal type is available in the resulting build.  
Don't worry if you don't want to use ASYNCIO or your system does not support 
libaio, ActiveMQ Artemis will check at runtime to see if the required libraries 
and system dependencies are available, if not it will default to using NIO.
+
+To build the ActiveMQ Artemis ASYNCIO native libraries, please follow the 
instructions in the artemis-native/README.
+
 ## Documentation
 
 Our documentation is always in sync with our releases at the [Apache ActiveMQ 
Artemis](http://activemq.apache.org/artemis/docs.html) website.

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ce57a715/artemis-distribution/src/main/assembly/source-assembly.xml
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/assembly/source-assembly.xml 
b/artemis-distribution/src/main/assembly/source-assembly.xml
index 0eeb9e3..acf6b11 100644
--- a/artemis-distribution/src/main/assembly/source-assembly.xml
+++ b/artemis-distribution/src/main/assembly/source-assembly.xml
@@ -54,6 +54,7 @@
             <exclude>ratReport.txt</exclude>
             <exclude>.gitignore</exclude>
             <exclude>artemis_doap.rdf</exclude>
+            <exclude>artemis-native/bin/</exclude>
 
             <!--  build output  -->
             <exclude>

Reply via email to