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 2014/03/15 17:08:42 UTC

svn commit: r1577889 - /httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle

Author: olegk
Date: Sat Mar 15 16:08:41 2014
New Revision: 1577889

URL: http://svn.apache.org/r1577889
Log:
Put NOTICE and LICENSE to META-INF folder

Modified:
    httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle

Modified: httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle?rev=1577889&r1=1577888&r2=1577889&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle (original)
+++ httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle Sat Mar 15 16:08:41 2014
@@ -93,7 +93,7 @@ android.libraryVariants.all { variant ->
             from variant.javaCompile.destinationDir
             from 'NOTICE.txt'
             from 'LICENSE.txt'
-            rename '(NOTICE|LICENSE).txt', '$1'
+            rename '(NOTICE|LICENSE).txt', 'META-INF/$1'
 
             manifest {
                 from sharedManifest
@@ -105,7 +105,7 @@ android.libraryVariants.all { variant ->
             from variant.javaCompile.source
             from 'NOTICE.txt'
             from 'LICENSE.txt'
-            rename '(NOTICE|LICENSE).txt', '$1'
+            rename '(NOTICE|LICENSE).txt', 'META-INF/$1'
             classifier = 'source'
 
             manifest {
@@ -124,7 +124,7 @@ android.libraryVariants.all { variant ->
             from createAndroidJavadoc.destinationDir
             from 'NOTICE.txt'
             from 'LICENSE.txt'
-            rename '(NOTICE|LICENSE).txt', '$1'
+            rename '(NOTICE|LICENSE).txt', 'META-INF/$1'
             classifier = 'javadoc'
 
             manifest {