Skip to content

Commit

Permalink
Merge branch 'master' into fix/8493-systemd-service-file-for-debian
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Fromm committed Dec 4, 2014
2 parents e002b4c + 26a0976 commit a243b90
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions docs/java-api/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,49 @@ For example, you can define the latest version in your `pom.xml` file:
</dependency>
--------------------------------------------------

== Deploying in JBoss EAP6 module

Elasticsearch and Lucene classes need to be in the same JBoss module.

You should define a `module.xml` file like this:

[source,xml]
--------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.1" name="org.elasticsearch">
<resources>
<!-- Elasticsearch -->
<resource-root path="elasticsearch-1.4.1.jar"/>
<!-- Lucene -->
<resource-root path="lucene-core-4.10.2.jar"/>
<resource-root path="lucene-analyzers-common-4.10.2.jar"/>
<resource-root path="lucene-queries-4.10.2.jar"/>
<resource-root path="lucene-memory-4.10.2.jar"/>
<resource-root path="lucene-highlighter-4.10.2.jar"/>
<resource-root path="lucene-queryparser-4.10.2.jar"/>
<resource-root path="lucene-sandbox-4.10.2.jar"/>
<resource-root path="lucene-suggest-4.10.2.jar"/>
<resource-root path="lucene-misc-4.10.2.jar"/>
<resource-root path="lucene-join-4.10.2.jar"/>
<resource-root path="lucene-grouping-4.10.2.jar"/>
<resource-root path="lucene-spatial-4.10.2.jar"/>
<resource-root path="lucene-expressions-4.10.2.jar"/>
<!-- Insert other resources here -->
</resources>
<dependencies>
<module name="sun.jdk" export="true" >
<imports>
<include path="sun/misc/Unsafe" />
</imports>
</module>
<module name="org.apache.log4j"/>
<module name="org.apache.commons.logging"/>
<module name="javax.api"/>
</dependencies>
</module>
--------------------------------------------------


include::client.asciidoc[]

Expand Down

0 comments on commit a243b90

Please sign in to comment.