You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by rh...@apache.org on 2020/03/26 04:30:20 UTC

[geode-examples] branch develop updated (4288c82 -> 813b761)

This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


    from 4288c82  Simplify geode-install path for running examples
     new a85440c  GEODE-7719: no need to create both .tar.gz AND .zip
     new 813b761  GEODE-6532: Dependency changes to examples related to the Geode fix. (#92)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.gradle          | 2 +-
 gradle/release.gradle | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)


[geode-examples] 01/02: GEODE-7719: no need to create both .tar.gz AND .zip

Posted by rh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit a85440c7758b4b3db0e38a3edd684872b0e101ce
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Fri Jan 17 11:45:53 2020 -0800

    GEODE-7719: no need to create both .tar.gz AND .zip
    
    (cherry picked from commit 4cbc09452514e80a8fcf9d912a37daf612566bfd)
---
 gradle/release.gradle | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gradle/release.gradle b/gradle/release.gradle
index 2a7f7fe..419dfd0 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -26,6 +26,12 @@ gradle.taskGraph.whenReady( { graph ->
 })
 
 gradle.taskGraph.whenReady( { graph ->
+  tasks.withType(Zip).each { zip ->
+    zip.enabled = false
+  }
+})
+
+gradle.taskGraph.whenReady( { graph ->
   tasks.withType(AbstractArchiveTask).findAll {
     it.name.toLowerCase().contains("dist")
   }.each { archive ->


[geode-examples] 02/02: GEODE-6532: Dependency changes to examples related to the Geode fix. (#92)

Posted by rh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 813b76196c279f8eeeaf146cf102883181939c27
Author: Robert Houghton <rh...@pivotal.io>
AuthorDate: Mon Feb 24 14:02:27 2020 -0800

    GEODE-6532: Dependency changes to examples related to the Geode fix. (#92)
    
    Several transitive dependencies will be marked 'runtime' not 'compile'
    in the POM from geode, causing examples to not miss symbols. Declare
    those dependencies outright.
    
    (cherry picked from commit e974408674428770c35be3b444e022d2b9f1973e)
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index d4b2302..88cfa72 100644
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,7 @@ allprojects {
     }
 }
 
-def installDir = "$buildDir/apache-geode"
+def installDir = "$buildDir/apache-geode-${geodeVersion}"
 
 configurations {
     geodeDistribution