You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by mi...@apache.org on 2014/09/24 06:01:10 UTC

svn commit: r1627213 - /olingo/site/trunk/content/doc/odata4/dependencies.mdtext

Author: mibo
Date: Wed Sep 24 04:01:10 2014
New Revision: 1627213

URL: http://svn.apache.org/r1627213
Log:
CMS commit to olingo by mibo

Modified:
    olingo/site/trunk/content/doc/odata4/dependencies.mdtext

Modified: olingo/site/trunk/content/doc/odata4/dependencies.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/dependencies.mdtext?rev=1627213&r1=1627212&r2=1627213&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/dependencies.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/dependencies.mdtext Wed Sep 24 04:01:10 2014
@@ -23,54 +23,50 @@ Notice:    Licensed to the Apache Softwa
 ##### Common Dependencies
 The following common dependencies needs to be added to the pom.xml of the consuming project:
 
-```
-<dependency>
-  <groupId>org.apache.olingo</groupId>
-  <artifactId>odata-commons-api</artifactId>
-  <version>${project.version}</version>
-</dependency>
-<dependency>
-  <groupId>org.apache.olingo</groupId>
-  <artifactId>odata-commons-core</artifactId>
-  <version>${project.version}</version>
-</dependency>
-```
+    <dependency>
+      <groupId>org.apache.olingo</groupId>
+      <artifactId>odata-commons-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.olingo</groupId>
+      <artifactId>odata-commons-core</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
 
 ##### OData Client Dependencies
 For realization of *OData-Client* projects additional dependencies are necessary:
 
-```xml
-<dependency>
-  <groupId>org.apache.olingo</groupId>
-  <artifactId>odata-server-api</artifactId>
-  <version>${olingo.version}</version>
-  <scope>compile</scope>
-</dependency>
-<dependency>
-  <groupId>org.apache.olingo</groupId>
-  <artifactId>odata-server-core</artifactId>
-  <version>${olingo.version}</version>
-  <scope>runtime</scope>
-</dependency>
-```
+    <dependency>
+      <groupId>org.apache.olingo</groupId>
+      <artifactId>odata-server-api</artifactId>
+      <version>${olingo.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.olingo</groupId>
+      <artifactId>odata-server-core</artifactId>
+      <version>${olingo.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+
 
 ##### OData Client Dependencies
 For realization of *OData-Server* projects additional dependencies are necessary:
 
-```xml
-<dependency>
- <groupId>org.apache.olingo</groupId>
- <artifactId>odata-server-api</artifactId>
- <version>${olingo.version}</version>
- <scope>compile</scope>
-</dependency>
-<dependency>
- <groupId>org.apache.olingo</groupId>
- <artifactId>odata-server-core</artifactId>
- <version>${olingo.version}</version>
- <scope>runtime</scope>
-</dependency>
-```
+    <dependency>
+     <groupId>org.apache.olingo</groupId>
+     <artifactId>odata-server-api</artifactId>
+     <version>${olingo.version}</version>
+     <scope>compile</scope>
+    </dependency>
+    <dependency>
+     <groupId>org.apache.olingo</groupId>
+     <artifactId>odata-server-core</artifactId>
+     <version>${olingo.version}</version>
+     <scope>runtime</scope>
+    </dependency>
 
 
 Whereas the variable `${olingo.version}` has to be replaced with the concrete version of the library.