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 2013/10/24 19:15:33 UTC

svn commit: r1535445 - /incubator/olingo/site/trunk/content/doc/maven.mdtext

Author: mibo
Date: Thu Oct 24 17:15:33 2013
New Revision: 1535445

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

Modified:
    incubator/olingo/site/trunk/content/doc/maven.mdtext

Modified: incubator/olingo/site/trunk/content/doc/maven.mdtext
URL: http://svn.apache.org/viewvc/incubator/olingo/site/trunk/content/doc/maven.mdtext?rev=1535445&r1=1535444&r2=1535445&view=diff
==============================================================================
--- incubator/olingo/site/trunk/content/doc/maven.mdtext (original)
+++ incubator/olingo/site/trunk/content/doc/maven.mdtext Thu Oct 24 17:15:33 2013
@@ -20,9 +20,21 @@ Notice:    Licensed to the Apache Softwa
 
 ---
 
-### Clone the project
+### Get the Project
 
-    git clone https://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2
+The project uses [Git](http://git-scm.com/) for source code management and version control.
+
+To get the project just `clone` the Project from:
+
+> `https://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2`
+
+with a `git client tool`.
+
+As example with the official `git console client` just call:
+
+> `git clone https://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2`
+
+from the command line.
 
 ### Building the Project
 
@@ -32,6 +44,37 @@ The project builds with Maven. Simply ca
 
 to run the build.
 
+#### Build with different Maven Profiles
+
+To activate profiles run
+
+    mvn clean install -Pprofile1,profile2
+
+<table border="1" cellpadding="5">
+<tr>
+    <th>profile name</th>
+    <th>description</th>
+  </tr>
+  <tr>
+    <td>build.default</td>
+    <td>Standard build including unit tests.</td>
+  </tr>
+  <tr>
+    <td>build.fast</td>
+    <td>Fast build to get artifacts. Therefore quality checks, unit tests and javadoc generation are skipped.</td>
+  </tr>
+  <tr>
+    <td>build.quality</td>
+    <td>Configures quality plugins like checkstyle, the rat tool and others.</td>
+  </tr>
+  <tr>
+    <td>apache-release</td>
+    <td>Sign code, builds Javadoc and performs a Apache release build. It heavily refers to <a href="http://www.apache.org/dev/publishing-maven-artifacts.html">standard Apache procedures</a> to release Maven based projects at Apache.</td>
+  </tr>
+</table>
+
+
+
 ### Consuming Artifacts
 
 To consume libraries with Maven add following dependencies to your pom.xml:
@@ -68,34 +111,4 @@ For advanced JPA processor usage these a
       <artifactId>olingo-odata2-jpa-processor-core-incubating</artifactId>
       <version>${olingo.version}</version>
       <scope>runtime</scope>
-    </dependency>
-
-### Maven Profiles
-
-To activate profiles run
-
-    mvn clean install -Pprofile1,profile2
-
-<table border="1" cellpadding="5">
-<tr>
-    <th>profile name</th>
-    <th>description</th>
-  </tr>
-  <tr>
-    <td>build.default</td>
-    <td>Standard build including unit tests.</td>
-  </tr>
-  <tr>
-    <td>build.fast</td>
-    <td>Fast build to get artifacts. Therefore quality checks, unit tests and javadoc generation are skipped.</td>
-  </tr>
-  <tr>
-    <td>build.quality</td>
-    <td>Configures quality plugins like checkstyle, the rat tool and others.</td>
-  </tr>
-  <tr>
-    <td>apache-release</td>
-    <td>Sign code, builds Javadoc and performs a Apache release build. It heavily refers to <a href="http://www.apache.org/dev/publishing-maven-artifacts.html">standard Apache procedures</a> to release Maven based projects at Apache.</td>
-  </tr>
-</table>
-
+    </dependency>
\ No newline at end of file