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/09/04 20:55:22 UTC

svn commit: r1520107 - /httpcomponents/project-release-tools/trunk/rc.gradle

Author: olegk
Date: Wed Sep  4 18:55:22 2013
New Revision: 1520107

URL: http://svn.apache.org/r1520107
Log:
Common binary resources

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

Modified: httpcomponents/project-release-tools/trunk/rc.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/project-release-tools/trunk/rc.gradle?rev=1520107&r1=1520106&r2=1520107&view=diff
==============================================================================
--- httpcomponents/project-release-tools/trunk/rc.gradle (original)
+++ httpcomponents/project-release-tools/trunk/rc.gradle Wed Sep  4 18:55:22 2013
@@ -250,7 +250,11 @@ CopySpec sources(HCProject hcProject, St
             include '**/src/**'
             include '**/*.txt'
             include '**/*.xml'
-            exclude '**/resources/**'
+            exclude '**/resources/**/*.keystore'
+            exclude '**/resources/**/*.truststore'
+            exclude '**/resources/**/*.png'
+            exclude '**/resources/**/*.jpg'
+            exclude '**/resources/**/*.gif'
             exclude '**/bin/**'
             exclude '**/target/**'
             exclude '**/build/**'
@@ -259,7 +263,11 @@ CopySpec sources(HCProject hcProject, St
             filter(Line.delim(delim), Line.filter())
         }
         from (hcProject.localDir) {
-            include '**/resources/**'
+            include '**/resources/**/*.keystore'
+            include '**/resources/**/*.truststore'
+            include '**/resources/**/*.png'
+            include '**/resources/**/*.jpg'
+            include '**/resources/**/*.gif'
             exclude '**/bin/**'
             exclude '**/target/**'
             exclude '**/build/**'