You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by bu...@apache.org on 2019/05/28 08:58:41 UTC

svn commit: r1045628 - in /websites/staging/olingo/trunk/content: ./ doc/odata4/tutorials/read/tutorial_read.html

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">&para;</a></h1>
 <h2 id="part-1-read-scenario">Part 1: Read scenario<a class="headerlink" href="#part-1-read-scenario" title="Permanent link">&para;</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">&lt;project</span> <span class="na">xmlns=</span><span class="s">&quot;http://maven.apache.org/POM/4.0.0&quot;</span> <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span>
   <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd&quot;</span><span class="nt">&gt;</span>
-  <span class="nt">&lt;modelVersion&gt;</span>4.0.0<span class="nt">&lt;/modelVersion&gt;</span>
+  <span class="nt">&lt;modelVersion&gt;</span>4.6.0<span class="nt">&lt;/modelVersion&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>my.group.id<span class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>DemoService<span class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;packaging&gt;</span>war<span class="nt">&lt;/packaging&gt;</span>
-  <span class="nt">&lt;version&gt;</span>4.0.0<span class="nt">&lt;/version&gt;</span>
+  <span class="nt">&lt;version&gt;</span>4.6.0<span class="nt">&lt;/version&gt;</span>
 
   <span class="nt">&lt;name&gt;</span>DemoService Maven Webapp<span class="nt">&lt;/name&gt;</span>
 
   <span class="nt">&lt;properties&gt;</span>
     <span class="nt">&lt;javax.version&gt;</span>2.5<span class="nt">&lt;/javax.version&gt;</span>
-    <span class="nt">&lt;odata.version&gt;</span>4.0.0<span class="nt">&lt;/odata.version&gt;</span>
+    <span class="nt">&lt;odata.version&gt;</span>4.6.0<span class="nt">&lt;/odata.version&gt;</span>
     <span class="nt">&lt;slf4j.version&gt;</span>1.7.7<span class="nt">&lt;/slf4j.version&gt;</span>
   <span class="nt">&lt;/properties&gt;</span>