From d56ed787cc51060a2459a0a64100c3704ffcbf60 Mon Sep 17 00:00:00 2001 From: suchit sharma Date: Thu, 13 Feb 2014 17:33:52 +0100 Subject: [PATCH 1/2] Updated for maven installation --- user-tutorial.rst | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/user-tutorial.rst b/user-tutorial.rst index d8b6db9..9db3620 100644 --- a/user-tutorial.rst +++ b/user-tutorial.rst @@ -75,6 +75,54 @@ was chosen by you during the installation as described in |project| depends on `Google Protocol Buffers`_. So make sure that their jar file is also available on the classpath. +Installation with Maven +------------------------ + +#. The following changes need to be done in :file:`pom.xml` + + Add dependency for rsb jar: + + .. code-block:: xml + + + + rsb + rst + 0.11-SNAPSHOT + + + + Add repository information for downloading rsb jar: + + .. code-block:: xml + + + + citec + CITEC Maven Repository Server + http://repo.cit-ec.uni-bielefeld.de/ + default + + true + + + true + + + + +#. To compile the code with dependency use : + + .. code-block:: sh + + $ mvn clean dependency:copy-dependencies package + +#. To run the jar: + + .. code-block:: sh + + $ java -cp target/my-app-1.0-SNAPSHOT-jar.jar com.mycompany.app.App + .. _user-tutorial-python: Python -- 1.7.9.5