How to run the nuxeo-dm project in GitHub?

Can I ask, what's the purpose of the project in GitHub? and how to run it? I can't see the instructions in the README on how to run the cloned project, even in the nuxeo website. Please help. TIA

0 votes

2 answers

2140 views

ANSWER



nuxeo-dm is a sub-module of the root Nuxeo project. Try building the complete Nuxeo source by cloning https://github.com/nuxeo/nuxeo and following the README.md of that project, specifically the Deploying section. Please make sure the machine you are building on has all of the Requirements, make sure you run the clone.py script, and add -DskipTests to your Maven parameters to save time on the build. The result will yield compiled jar files for all of the Nuxeo modules. Building the nuxeo-distribution/nuxeo-distribution-tomcat sub-module will yield a deployable distribution (nuxeo-distribution-tomcat-7.10-SNAPSHOT-nuxeo-cap.zip)

2 votes



why there's an error when I run the python script?

File "clone.py", line 70

except ExitException, e:
                    ^

SyntaxError: invalid syntax

sorry, no time to study python :)

10/22/2015

What is your OS? What is the exact command line you issued? What is your Python version?
10/23/2015

Windows 8.1, I'm using python 3.5..
10/26/2015

Already figure it out :) I checked it in the commits. Thanks anyway.. I'm now using v2.7.10
10/26/2015

What the right Java Heap Space for maven? I've got a build failure in the end and an error like this

The system is out of resources. Consult the following stack trace for details. java.lang.StackOverflowError

10/26/2015


The CORG/Getting+the+Nuxeo+source+code documentation recommends export MAVEN_OPTS="-Xmx4096m -Xms1024m -XX:MaxPermSize=512m" but it depends on your OS and material.

Actually, I'm wondering what is your goal? What do you want to achieve? The source code is under continuous integration at Nuxeo QA and the generated artifacts are published into the Nuxeo Maven repositories, so there are very few reasons to build the whole Nuxeo Platform yourself.

0 votes