You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2013/10/22 15:17:56 UTC

svn commit: r1534628 - /httpcomponents/project-release-tools/trunk/build.gradle

Author: olegk
Date: Tue Oct 22 13:17:56 2013
New Revision: 1534628

URL: http://svn.apache.org/r1534628
Log:
Put release content into a separate folder within ZIP/TAR dist

Modified:
    httpcomponents/project-release-tools/trunk/build.gradle

Modified: httpcomponents/project-release-tools/trunk/build.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/project-release-tools/trunk/build.gradle?rev=1534628&r1=1534627&r2=1534628&view=diff
==============================================================================
--- httpcomponents/project-release-tools/trunk/build.gradle (original)
+++ httpcomponents/project-release-tools/trunk/build.gradle Tue Oct 22 13:17:56 2013
@@ -268,21 +268,25 @@ if (rcTagFile.exists() && rcRevisionFile
 
         task distWinBin(type: Zip) {
             with docs(dir, pom, Line.CRLF), atrifacts(configurations.rc)
+            into "${pom.artifactId}-${pom.version}"
             classifier = 'bin'
         }
 
         task distUxBin(type: Tar) {
             with docs(dir, pom, Line.LF), atrifacts(configurations.rc)
+            into "${pom.artifactId}-${pom.version}"
             classifier = 'bin'
         }
 
         task distWinOSGiBin(type: Zip) {
             with docs(dir, pom, Line.CRLF), osgiBundle(dir, pom)
+            into "${pom.artifactId}-${pom.version}"
             classifier = 'osgi-bin'
         }
 
         task distUxOSGiBin(type: Tar) {
             with docs(dir, pom, Line.LF), osgiBundle(dir, pom)
+            into "${pom.artifactId}-${pom.version}"
             classifier = 'osgi-bin'
         }