From 59a86c364b2a623cfbb15f9a0d97a8ecba5faf39 Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Thu, 3 Nov 2016 15:58:46 +0000 Subject: [PATCH] Documentation now refers devs to use install over publishToMavenLocal --- docs/source/creating-a-cordapp.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/creating-a-cordapp.rst b/docs/source/creating-a-cordapp.rst index 2b28931840..5c57d026c3 100644 --- a/docs/source/creating-a-cordapp.rst +++ b/docs/source/creating-a-cordapp.rst @@ -101,7 +101,7 @@ root directory of Corda .. code-block:: shell - ./gradlew publishToMavenLocal + ./gradlew install This will publish corda-$version.jar, contracts-$version.jar, core-$version.jar and node-$version.jar to the group com.r3corda. You can now depend on these as you normally would a Maven dependency. @@ -120,7 +120,7 @@ root of the Corda project: .. code-block:: text - ./gradlew publishToMavenLocal + ./gradlew install The plugins will now be installed to your local Maven repository in ~/.m2 on Unix and %HOMEPATH%\.m2 on Windows.