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

[geode-examples] branch support/1.12 updated (08d6460 -> 3ea60ea)

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

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


    from 08d6460  Bumping version to 1.12.1-SNAPSHOT
     new e49be5f  GEODE-8026: name release artifacts consistently
     new 3ea60ea  GEODE-8026: name src release artifacts consistently

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:
 gradle/release.gradle | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)


[geode-examples] 02/02: GEODE-8026: name src release artifacts consistently

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

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

commit 3ea60eab598b2709fd400774042f6870b8537dc6
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Sun Apr 26 11:15:47 2020 -0700

    GEODE-8026: name src release artifacts consistently
    
    (cherry picked from commit d91fc370064fc399147bea73d80c81a87160199e)
---
 gradle/release.gradle | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gradle/release.gradle b/gradle/release.gradle
index c1bff13..ef1f464 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -62,8 +62,9 @@ gradle.taskGraph.whenReady { taskGraph ->
 }
 
 distributions {
-  main {
-    baseName = 'apache-' + baseName
+  src {
+    baseName = 'apache-geode-examples'
+    version = version + '-src'
     contents {
       from (rootDir) {
         exclude 'KEYS'


[geode-examples] 01/02: GEODE-8026: name release artifacts consistently

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

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

commit e49be5f42e9df147d81aeaca6ab002ba5372d0dd
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Sun Apr 26 10:03:59 2020 -0700

    GEODE-8026: name release artifacts consistently
    
    (cherry picked from commit ada42680b7d59ba923785b53da28a8cf244a23f4)
---
 gradle/release.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/release.gradle b/gradle/release.gradle
index 419dfd0..c1bff13 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -21,7 +21,7 @@ apply plugin: 'signing'
 gradle.taskGraph.whenReady( { graph ->
   tasks.withType(Tar).each { tar ->
     tar.compression = Compression.GZIP
-    tar.extension = 'tar.gz'
+    tar.extension = 'tgz'
   }
 })