Author: buildbot
Date: Mon May 4 11:19:35 2015
New Revision: 950042
Log:
Staging update by buildbot for olingo
Modified:
websites/staging/olingo/trunk/content/ (props changed)
websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
Propchange: websites/staging/olingo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon May 4 11:19:35 2015
@@ -1 +1 @@
-1677584
+1677585
Modified:
websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
==============================================================================
---
websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
(original)
+++
websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
Mon May 4 11:19:35 2015
@@ -186,21 +186,23 @@ The description within this section is b
<em>File -> New -> other -> Maven -> Maven Project</em></p>
<p>On the second wizard page, choose the archetype: maven-archetype-webapp</p>
<p><img alt="mavenArchetype" src="mavenArchetype.png" title="The Maven
Archetype" /></p>
-<p>On the next page, enter the following information:<br />
- - Project Name: <em>DemoService</em>
- - Groupd Id: <em>my.group.id</em>
- - Artifact Id: <em>DemoService</em>
- - Version: <em>0.0.1</em>
- - Package: <em>myservice.mynamespace.service</em></p>
+<p>On the next page, enter the following information: </p>
+<ul>
+<li>Project Name: <em>DemoService</em></li>
+<li>Groupd Id: <em>my.group.id</em></li>
+<li>Artifact Id: <em>DemoService</em></li>
+<li>Version: <em>0.0.1</em></li>
+<li>Package: <em>myservice.mynamespace.service</em></li>
+</ul>
<blockquote>
<p>Note:
If youâre using this wizard for the first time, it might take some time, as
maven needs to download the archetype itself to your local maven-repo.</p>
</blockquote>
-<p>After finishing the wizard, the next step is to edit the pom.xml file.</p>
+<p>After finishing the wizard, the next step is to edit the <em>pom.xml</em>
file.</p>
<p><strong>Edit pom file</strong></p>
<p>In our project, weâll be using several libraries, e.g. the Olingo
libraries.
In the pom.xml file, we specify the dependencies and Maven will take care to
download them to our local maven repository.
-Furthermore, the pom.xml file tells Maven which output we want to have as
result of our build. In our case, this is a war file.</p>
+Furthermore, the <em>pom.xml</em> file tells Maven which output we want to
have as result of our build. In our case, this is a war file.</p>
<p>In our example, the pom.xml file looks as follows:</p>
<div class="codehilite"><pre><span class="nt"><project</span> <span
class="na">xmlns=</span><span
class="s">"http://maven.apache.org/POM/4.0.0"</span> <span
class="na">xmlns:xsi=</span><span
class="s">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span class="na">xsi:schemaLocation=</span><span
class="s">"http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"</span><span
class="nt">></span>