Author: buildbot
Date: Tue May 28 08:58:41 2019
New Revision: 1045628
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 Tue May 28 08:58:41 2019
@@ -1 +1 @@
-1860194
+1860203
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
Tue May 28 08:58:41 2019
@@ -100,7 +100,7 @@
h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
<h1 id="how-to-build-an-odata-service-with-olingo-v4">How to build an OData
Service with Olingo V4<a class="headerlink"
href="#how-to-build-an-odata-service-with-olingo-v4" title="Permanent
link">¶</a></h1>
<h2 id="part-1-read-scenario">Part 1: Read scenario<a class="headerlink"
href="#part-1-read-scenario" title="Permanent link">¶</a></h2>
-<p>This tutorial guides you through the steps required to write an OData
Service based on the Olingo OData 4.0 Library for Java (based on current
<em>Olingo 4.0.0</em> which can be get via the <a
href="../../download.html">Download-Page</a>).</p>
+<p>This tutorial guides you through the steps required to write an OData
Service based on the Olingo OData 4.0 Library for Java (based on current
<em>Olingo 4.6.0</em> which can be get via the <a
href="../../download.html">Download-Page</a>).</p>
<p>The final source code can be found in the project <a
href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
A detailed description how to checkout the tutorials can be found <a
href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.
This tutorial can be found in subdirectory
<em>\samples\tutorials\p1_read</em></p>
@@ -207,7 +207,7 @@ The description within this section is b
<ul>
<li>Groupd Id: <em>my.group.id</em></li>
<li>Artifact Id: <em>DemoService</em></li>
-<li>Version: <em>4.0.0</em></li>
+<li>Version: <em>4.6.0</em></li>
<li>Package: <em>myservice.mynamespace.service</em></li>
</ul>
<blockquote>
@@ -222,17 +222,17 @@ Furthermore, the <em>pom.xml</em> file t
<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>
- <span class="nt"><modelVersion></span>4.0.0<span
class="nt"></modelVersion></span>
+ <span class="nt"><modelVersion></span>4.6.0<span
class="nt"></modelVersion></span>
<span class="nt"><groupId></span>my.group.id<span
class="nt"></groupId></span>
<span class="nt"><artifactId></span>DemoService<span
class="nt"></artifactId></span>
<span class="nt"><packaging></span>war<span
class="nt"></packaging></span>
- <span class="nt"><version></span>4.0.0<span
class="nt"></version></span>
+ <span class="nt"><version></span>4.6.0<span
class="nt"></version></span>
<span class="nt"><name></span>DemoService Maven Webapp<span
class="nt"></name></span>
<span class="nt"><properties></span>
<span class="nt"><javax.version></span>2.5<span
class="nt"></javax.version></span>
- <span class="nt"><odata.version></span>4.0.0<span
class="nt"></odata.version></span>
+ <span class="nt"><odata.version></span>4.6.0<span
class="nt"></odata.version></span>
<span class="nt"><slf4j.version></span>1.7.7<span
class="nt"></slf4j.version></span>
<span class="nt"></properties></span>