diff options
-rw-r--r-- | doc/website/content/download.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/website/content/download.html b/doc/website/content/download.html index 66160bf9f2..477e7aa0cf 100644 --- a/doc/website/content/download.html +++ b/doc/website/content/download.html @@ -199,6 +199,25 @@ Other mirrors: <select name="Preferred"> </tbody></table> </div> + <h3><a name="Download-Maven"></a>Maven artifacts</h3> + <p>The Java client is also available via the Maven central repository. To use the client in your Maven build you should add the following dependency to your POM:</p> + <code> +<dependency><br /> + <groupId>org.apache.qpid</groupId><br /> + <artifactId>qpid-client</artifactId><br /> + <version>0.10</version><br /> +</dependency> + </code> + + <p>Additionally, you must provide the JMS API if it is not already available in your compilation and/or runtime environment, an example dependency for this would be:</p> + <code> +<dependency><br /> + <groupId>org.apache.geronimo.specs</groupId><br /> + <artifactId>geronimo-jms_1.1_spec</artifactId><br /> + <version>1.0</version><br /> +</dependency> + </code> + <h2><a name="Download-PreviousRelease"></a>Previous Releases</h2> <p>Previous releases are available from <a href="http://archive.apache.org/dist/qpid/">http://archive.apache.org/dist/qpid/ |