You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by pa...@apache.org on 2015/07/28 14:55:13 UTC

[16/50] zest-java git commit: ZEST-25 & ZEST-40 Rename dists form qi4j-sdk-* to apache-zest-java-*

ZEST-25 & ZEST-40 Rename dists form qi4j-sdk-* to apache-zest-java-*


Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/1e569f97
Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/1e569f97
Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/1e569f97

Branch: refs/heads/master
Commit: 1e569f972c087fc3e5258b22066af75e298150a0
Parents: df2bf67
Author: Paul Merlin <pa...@apache.org>
Authored: Tue Jul 21 17:50:31 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Tue Jul 21 17:50:31 2015 +0200

----------------------------------------------------------------------
 build.gradle | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-java/blob/1e569f97/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 6918d0a..af861b6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -749,7 +749,7 @@ def srcDistFilteredFilesImage = copySpec {
 }
 
 def srcDistImage = copySpec {
-  into "qi4j-sdk-$version"
+  into "apache-zest-java-$version-src"
   with srcDistFilesImages
   with srcDistFilteredFilesImage
 }
@@ -794,7 +794,7 @@ def binDistNoticesImage = copySpec {
 }
 
 def binDistImage = copySpec {
-  into "qi4j-sdk-$version"
+  into "apache-zest-java-$version-bin"
   with binDistNoticesImage
   with docsImage
   with reportsDistImage
@@ -803,26 +803,26 @@ def binDistImage = copySpec {
 }
 
 task zipSources( type: Zip ) {
-  baseName = 'qi4j-sdk'
+  baseName = 'apache-zest-java'
   with srcDistImage
   classifier = 'src'
 }
 
 task tarSources( type: Tar ) {
-  baseName = 'qi4j-sdk'
+  baseName = 'apache-zest-java'
   with srcDistImage
   compression = Compression.GZIP
   classifier = 'src'
 }
 
 task zipBinaries( type: Zip, dependsOn: buildAll ) {
-  baseName = 'qi4j-sdk'
+  baseName = 'apache-zest-java'
   classifier = 'bin'
   with binDistImage
 }
 
 task tarBinaries( type: Tar, dependsOn: buildAll ) {
-  baseName = 'qi4j-sdk'
+  baseName = 'apache-zest-java'
   classifier = 'bin'
   compression = Compression.GZIP
   with binDistImage
@@ -862,8 +862,8 @@ task dist( type: Copy, dependsOn: install ) {
 // - Run the check task of this very build inside the source distribution
 // - Rat the binary distribution (not pulled by checkDists as it takes ages to complete)
 // - Use the dependencies download facility of the binary distribution to "go offline"
-def unpackedSrcDistDir = file( "build/unpacked-distributions/src/qi4j-sdk-$version" )
-def unpackedBinDistDir = file( "build/unpacked-distributions/bin/qi4j-sdk-$version" )
+def unpackedSrcDistDir = file( "build/unpacked-distributions/src/apache-zest-java-$version-src" )
+def unpackedBinDistDir = file( "build/unpacked-distributions/bin/apache-zest-java-$version-bin" )
 task unpackSrcDist( type: Copy ) {
   description "Unpack the source distribution"
   group = "distributions"