2017-07-21 11:33:31 +00:00
|
|
|
Building against Master
|
|
|
|
=======================
|
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
It is advisable to develop CorDapps against the most recent Corda stable release. However you may need to build
|
|
|
|
against the unstable Master branch if you are using a very recent feature, or are testing a PR on the main codebase.
|
2017-07-21 11:33:31 +00:00
|
|
|
|
|
|
|
To work against the Master branch, proceed as follows:
|
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
1. Open a terminal window in the folder where you cloned the Corda repository
|
2018-05-09 14:19:35 +00:00
|
|
|
(available `here <https://github.com/corda/corda>`_)
|
2017-07-21 11:33:31 +00:00
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
2. Use the following command to check out the latest master branch:
|
2017-07-21 11:33:31 +00:00
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
``git checkout master; git pull``
|
2017-07-21 11:33:31 +00:00
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
3. Publish Corda to your local Maven repository using the following commands:
|
2017-07-21 11:33:31 +00:00
|
|
|
|
|
|
|
* Unix/Mac OSX: ``./gradlew install``
|
|
|
|
* Windows: ``gradlew.bat install``
|
|
|
|
|
|
|
|
By default, the Maven local repository is found at:
|
|
|
|
|
|
|
|
* ``~/.m2/repository`` on Unix/Mac OS X
|
|
|
|
* ``%HOMEPATH%\.m2`` on Windows
|
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
This step is not necessary when using a stable releases, as the stable releases are published online
|
2017-07-21 11:33:31 +00:00
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
.. warning:: If you do modify your local Corda repository after having published it to Maven local, then you must
|
2018-01-19 13:43:17 +00:00
|
|
|
re-publish it to Maven local for the local installation to reflect the changes you have made.
|
2017-07-21 11:33:31 +00:00
|
|
|
|
2018-01-19 11:47:19 +00:00
|
|
|
.. warning:: As the Corda repository evolves on a daily basis, two clones of the Master branch at different points in
|
2018-01-19 13:43:17 +00:00
|
|
|
time may differ. If you are using a Master release and need help debugging an error, then please let us know the
|
2018-01-19 11:47:19 +00:00
|
|
|
**commit** you are working from. This will help us ascertain the issue.
|
|
|
|
|
|
|
|
4. Update the ``ext.corda_release_version`` property in your CorDapp's root ``build.gradle`` file to match the version
|
2018-01-19 13:43:17 +00:00
|
|
|
here: https://github.com/corda/corda/blob/master/build.gradle#L7
|