You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2016/02/03 00:00:12 UTC

[2/2] incubator-geode git commit: GEODE-852: Tweak to how we copy the pulse version properties file

GEODE-852: Tweak to how we copy the pulse version properties file

The old way was forcing a compilation of gemfire-core in order to
generate the properties.

Using a task as the input to the copy automatically adds the task as a
dependency of the copy and the outputs of the task as the list of files
to copy.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/4113eec9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/4113eec9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/4113eec9

Branch: refs/heads/develop
Commit: 4113eec91d9dd41d460af5b5d215f67ff9d4e618
Parents: 01c9337
Author: Dan Smith <up...@apache.org>
Authored: Tue Feb 2 14:21:20 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Tue Feb 2 14:52:34 2016 -0800

----------------------------------------------------------------------
 gemfire-pulse/build.gradle | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/4113eec9/gemfire-pulse/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-pulse/build.gradle b/gemfire-pulse/build.gradle
index 55b9e93..50369fb 100755
--- a/gemfire-pulse/build.gradle
+++ b/gemfire-pulse/build.gradle
@@ -84,8 +84,7 @@ sourceSets {
 }
 
 task copyGemFireVersionFile(type: Copy) {
-  inputs.dir project(':gemfire-core').sourceSets.main.output
-  from project(':gemfire-core').buildDir.absolutePath + "/generated-resources/main/com/gemstone/gemfire/internal/GemFireVersion.properties"
+  from project(':gemfire-core').createVersionPropertiesFile
   into generatedResources
 }