Skip to content

Commit

Permalink
GEODE-1695: Add buildId to gradle.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
metatype committed Jul 26, 2016
1 parent 84c8f42 commit cbe69b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion geode-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ task createVersionPropertiesFile {
def props = [
"Product-Name" : productName,
"Product-Version" : version,
"Build-Id" : "${System.env.USER} ${new Date().format('MMddyy')}".toString(),
"Build-Id" : "${System.env.USER} ${buildId}".toString(),
"Build-Date" : new Date().format('yyyy-MM-dd HH:mm:ss Z'),
"Build-Platform" : "${System.properties['os.name']} ${System.properties['os.version']} ${System.properties['os.arch']}".toString(),
"Build-Java-Version": System.properties['java.version']
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# <blank> - release
versionNumber = 1.0.0-incubating
releaseType = -SNAPSHOT
buildId = 0

productName = Apache Geode (incubating)
productOrg = Apache Software Foundation (ASF)
Expand Down

0 comments on commit cbe69b6

Please sign in to comment.