Removed redundant gradle extension variable to reduce complexity of build.gradle and clear up the process of changing the version numbers.

This commit is contained in:
Clinton Alexander 2016-12-08 12:18:26 +00:00
parent 467e2fc4aa
commit 5b4babf329

View File

@ -6,8 +6,8 @@ buildscript {
Properties props = new Properties() Properties props = new Properties()
file("../publish.properties").withInputStream { props.load(it) } file("../publish.properties").withInputStream { props.load(it) }
ext.gradle_plugins_version = props.getProperty("gradlePluginsVersion") // Our version: bump this on release. // If you bump this version you must re-bootstrap the codebase. See the README for more information.
ext.corda_published_version = "0.6.2" // Only needs to be bumped when the publishing plugin is changed. ext.gradle_plugins_version = props.getProperty("gradlePluginsVersion")
repositories { repositories {
mavenLocal() mavenLocal()
@ -15,7 +15,7 @@ buildscript {
} }
dependencies { dependencies {
classpath "net.corda.plugins:publish-utils:$corda_published_version" classpath "net.corda.plugins:publish-utils:$gradle_plugins_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
} }
} }