To avoid needing to bump three different files upon updates, a common publish properties file has been added.

This commit is contained in:
Clinton Alexander
2016-12-06 16:29:15 +00:00
parent 87e5c9bf46
commit f1daae0491
4 changed files with 17 additions and 4 deletions

View File

@ -4,7 +4,11 @@ apply plugin: 'com.jfrog.bintray'
// Used for bootstrapping project
buildscript {
ext.gradle_plugins_version = "0.6.2" // Our version: bump this on release.
// For sharing constants between builds
Properties props = new Properties()
file("../../publish.properties").withInputStream { props.load(it) }
ext.gradle_plugins_version = props.getProperty("gradlePluginsVersion")
repositories {
jcenter()