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 2015/04/30 16:01:03 UTC

svn commit: r1676991 - /olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext

Author: mibo
Date: Thu Apr 30 14:01:02 2015
New Revision: 1676991

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

Added:
    olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext   (with props)

Added: olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext?rev=1676991&view=auto
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext (added)
+++ olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext Thu Apr 30 14:01:02 2015
@@ -0,0 +1,42 @@
+Title:
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+# Appendix for Maven users
+
+Prerequisites for this Appendix is an installed Maven (Version 3.x) and access to the [Maven Central Repository](www.maven.org)
+
+### Initial project setup
+
+To create a Maven project without Eclipse, execute the following command on command line:
+
+```
+mvn archetype:generate \  
+-DgroupId=org.apache.olingo \  
+-DartifactId=DemoService \  
+-DarchetypeArtifactId=maven-archetype-webapp \  
+-DinteractiveMode=false
+```
+ 
+This creates a project skeleton.
+Afterwards, use the goal `eclipse:eclipse` in order to make the project Eclipse-like.
+This allows to import the project into Eclipse using the default Eclipse-importer:
+`File->import->General->Existing projects into workspace`
+
+
+### Append Jetty to pom
+

Propchange: olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read_mvn.mdtext
------------------------------------------------------------------------------
    svn:eol-style = native