Added documentation and buildscript to allow full bootstrapping without modifying build files.

This commit is contained in:
Clinton Alexander 2016-12-06 16:14:06 +00:00
parent 1b052b07ec
commit 87e5c9bf46
2 changed files with 21 additions and 1 deletions
gradle-plugins

@ -15,5 +15,10 @@ Installing
If you need to bootstrap the corda repository you can install these plugins with
.. code-block:: text
cd publish-utils
../../gradle install
cd ../
../gradle install
gradle install

@ -2,6 +2,21 @@ apply plugin: 'groovy'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
// Used for bootstrapping project
buildscript {
ext.gradle_plugins_version = "0.6.2" // Our version: bump this on release.
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
}
}
version "$gradle_plugins_version"
dependencies {
compile gradleApi()
compile localGroovy()