Build CEDAR project¶
Before building¶
One of the the CEDAR components must be compiled with Java 8. We patch this component before building so that it works with Java 11.
Run the following command to perfom this patch:
createjaxb2workaround
Build the project¶
goproject
mcit
The above is a shorthand for the following, full version:
cd ${CEDAR_HOME}/cedar-project
mvn clean install -DskipTests=true
Important
You can see that we are building the project by skipping the tests at this point.
Running the tests is the preferred way of building, however at this point the underlying infrastructure is not ready, so the tests would definitely fail.
Because of this, we will skip the tests this time.