Cordform common now uses the gradle plugins version in the core corda project.

This commit is contained in:
Clinton Alexander 2017-06-08 19:48:55 +01:00
parent 0642e0ea39
commit da47f1cb43
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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()
}