build organization

This commit is contained in:
nathan 2019-01-13 17:57:37 +01:00
parent d93ba6d803
commit 6c2fd0ed4b

View File

@ -69,14 +69,12 @@ object Extras {
} }
/////////////////////////////// ///////////////////////////////
///// assign 'Extras' to project or project.ext ///// assign 'Extras'
/////////////////////////////// ///////////////////////////////
description = Extras.description description = Extras.description
group = Extras.group group = Extras.group
version = Extras.version version = Extras.version
// load properties from custom location
val propsFile = File("$projectDir/../../gradle.properties").normalize() val propsFile = File("$projectDir/../../gradle.properties").normalize()
if (propsFile.canRead()) { if (propsFile.canRead()) {
println("\tLoading custom property data from: [$propsFile]") println("\tLoading custom property data from: [$propsFile]")
@ -96,7 +94,7 @@ if (propsFile.canRead()) {
else { else {
project.extra.set(k, v) project.extra.set(k, v)
} }
} } }}
} }
licensing { licensing {