Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OM2M/Download"

Line 2: Line 2:
 
== Get OM2M source code ==
 
== Get OM2M source code ==
 
* OM2M source code will be available as soon as possible on the following repository: http://git.eclipse.org/gitroot/om2m/org.eclipse.om2m.git
 
* OM2M source code will be available as soon as possible on the following repository: http://git.eclipse.org/gitroot/om2m/org.eclipse.om2m.git
* You can clone the OM2M project using the following command:
+
* You will be able to clone the OM2M project using the following command:
 
<pre>
 
<pre>
 
git clone http://git.eclipse.org/gitroot/om2m/org.eclipse.om2m.git
 
git clone http://git.eclipse.org/gitroot/om2m/org.eclipse.om2m.git

Revision as of 04:27, 20 May 2014

Get OM2M source code

git clone http://git.eclipse.org/gitroot/om2m/org.eclipse.om2m.git

Build OM2M using maven

  • "Apache Maven 3" is required to build OM2M.
  • Got to the "org.eclipse.om2m" directory.
  • Build OM2M using the following command: (An internet connection is required to download dependencies)
mvn clean install

Generated products

  • Two Eclipse products will be generated after a successful built:
    • The NSCL product can be found on this directory: "om2m/org.eclipse.om2m/org.eclipse.om2m.site.nscl/target/products/nscl/<os>/<ws>/<arch>"
    • The GSCL product can be found on this directory: "om2m/org.eclipse.om2m/org.eclipse.om2m.site.gscl/target/products/gscl/<os>/<ws>/<arch>"
  • You can also import the "org.eclipse.om2m" project as maven project in the Eclipse RPC IDE, and use Eclipse maven tools to build the NSCL and GSCL products.

Back to the top