updated documentation

This commit is contained in:
benni 2012-11-19 16:36:24 +01:00
parent 5d2be4a7db
commit b223a1b8b9

View File

@ -81,22 +81,22 @@ This project contains a maven repository that will allow you to import MBassador
The following steps are necessary: The following steps are necessary:
1. Add the repository location to your pom.xml 1. Add the repository location to your pom.xml
```xml <pre><code class="xml">
<repositories> &lt;repositories&gt;
<repository> &lt;repository&gt;
<id>mbassador-github-repo</id> &lt;id&gt;mbassador-github-repo&lt;/id&gt;
<url>https://raw.github.com/bennidi/mbassador/master/maven</url> &lt;url&gt;https://raw.github.com/bennidi/mbassador/master/maven &lt;/url&gt;
</repository> &lt;/repository&gt;
</repositories> &lt;/repositories&gt;
``` </pre></code>
2. Add the MBassador dependency to your pom.xml. You can check which versions are available by browsing 2. Add the MBassador dependency to your pom.xml. You can check which versions are available by browsing
the git repository online. the git repository online.
<pre><code class="xml"> <pre><code class="xml">
&ltdependency&gt &lt;dependency&gt;
&ltgroupId&gtorg.mbassy&lt/groupId&gt &lt;groupId&gt;org.mbassy&lt;/groupId&gt;
&ltartifactId&gtmbassador&lt/artifactId&gt &lt;artifactId&gt;mbassador&lt;/artifactId&gt;
&ltversion&gt1.0.0.RC&lt/version&gt &lt;version&gt;1.0.0.RC&lt;/version&gt;
&lt/dependency&gt &lt;/dependency&gt;
</pre></code> </pre></code>
3. Run mvn clean package to have maven download and install the required version into your local repository 3. Run mvn clean package to have maven download and install the required version into your local repository