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

svn commit: r1860203 - /olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext

Author: ramyav
Date: Tue May 28 08:58:32 2019
New Revision: 1860203

URL: http://svn.apache.org/viewvc?rev=1860203&view=rev
Log:
Change olingo version

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext?rev=1860203&r1=1860202&r2=1860203&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext Tue May 28 08:58:32 2019
@@ -20,7 +20,7 @@ Notice:    Licensed to the Apache Softwa
 
 ## Part 1: Read scenario
 
-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 *Olingo 4.0.0* which can be get via the [Download-Page](../../download.html)).
+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 *Olingo 4.6.0* which can be get via the [Download-Page](../../download.html)).
 
 The final source code can be found in the project [git repository](https://gitbox.apache.org/repos/asf/olingo-odata4).
 A detailed description how to checkout the tutorials can be found [here](/doc/odata4/tutorials/prerequisites/prerequisites.html).
@@ -155,7 +155,7 @@ On the next page, enter the following in
 
   * Groupd Id: *my.group.id*
   * Artifact Id: *DemoService*
-  * Version: *4.0.0*
+  * Version: *4.6.0*
   * Package: *myservice.mynamespace.service*
 
 > Note:
@@ -175,17 +175,17 @@ In our example, the pom.xml file looks a
     :::xml
     <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-      <modelVersion>4.0.0</modelVersion>
+      <modelVersion>4.6.0</modelVersion>
       <groupId>my.group.id</groupId>
       <artifactId>DemoService</artifactId>
       <packaging>war</packaging>
-      <version>4.0.0</version>
+      <version>4.6.0</version>
 
       <name>DemoService Maven Webapp</name>
 
       <properties>
         <javax.version>2.5</javax.version>
-        <odata.version>4.0.0</odata.version>
+        <odata.version>4.6.0</odata.version>
         <slf4j.version>1.7.7</slf4j.version>
       </properties>