From da47f1cb4315e4203c121f2b6312129d007c6b14 Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Thu, 8 Jun 2017 19:48:55 +0100 Subject: [PATCH] Cordform common now uses the gradle plugins version in the core corda project. --- build.gradle | 2 +- cordform-common/build.gradle | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 72603dc4b5..7342128d1c 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { file("$projectDir/constants.properties").withInputStream { constants.load(it) } // Our version: bump this on release. - ext.corda_release_version = "0.12.0" + ext.corda_release_version = "0.12.1" // Increment this on any release that changes public APIs anywhere in the Corda platform // TODO This is going to be difficult until we have a clear separation throughout the code of what is public and what is internal ext.corda_platform_version = 1 diff --git a/cordform-common/build.gradle b/cordform-common/build.gradle index c3c1676b23..e34e4a6c90 100644 --- a/cordform-common/build.gradle +++ b/cordform-common/build.gradle @@ -2,6 +2,9 @@ apply plugin: 'java' apply plugin: 'maven-publish' apply plugin: 'net.corda.plugins.publish-utils' +// This tracks the gradle plugins version and not Corda +version gradle_plugins_version + repositories { mavenCentral() }