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:11 UTC

[1/2] incubator-geode git commit: GEODE-572: Adding missing encoding option to public javadocs

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 01c9337ba -> c80b0afdd


GEODE-572: Adding missing encoding option to public javadocs

This javadoc task was missing the ecoding option. On some platforms that
causes the encoding to default to ascii, which fails the build.


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

Branch: refs/heads/develop
Commit: c80b0afdd1aef58ec07f3941c666dca539dd35d4
Parents: 4113eec
Author: Dan Smith <up...@apache.org>
Authored: Tue Feb 2 14:51:35 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Tue Feb 2 14:52:34 2016 -0800

----------------------------------------------------------------------
 gemfire-assembly/build.gradle | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/c80b0afd/gemfire-assembly/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-assembly/build.gradle b/gemfire-assembly/build.gradle
index a02b0a3..2d6cac9 100755
--- a/gemfire-assembly/build.gradle
+++ b/gemfire-assembly/build.gradle
@@ -198,6 +198,8 @@ task gfshDepsJar (type: Jar, dependsOn: ':gemfire-core:classes') {
 
 def docsDir = file("$buildDir/javadocs")
 task docs(type: Javadoc) {
+    options.addStringOption('Xdoclint:none', '-quiet')
+    options.encoding='UTF-8'
     source parent.subprojects*.javadoc*.source
     classpath = files(parent.subprojects*.javadoc*.classpath)
     title = "Apache Geode ${project.version}"


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

Posted by up...@apache.org.
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
 }