diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-04-29 16:34:35 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-04-29 16:34:35 +0000 |
| commit | 5428f3e2b52b11cbf905e267a949ccca40f9f672 (patch) | |
| tree | f568bb466d987fc81b0adff4139a05cb6de3e81b | |
| parent | c17124e73b4b21a694384aff14bc13585d6bdc98 (diff) | |
| download | qpid-python-5428f3e2b52b11cbf905e267a949ccca40f9f672.tar.gz | |
QPID-3230: add section to the downloads page to describe using the Maven artifacts for the java client
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1097873 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/doc/website/content/download.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/qpid/doc/website/content/download.html b/qpid/doc/website/content/download.html index 66160bf9f2..477e7aa0cf 100644 --- a/qpid/doc/website/content/download.html +++ b/qpid/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/ |
