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 2016/12/22 07:58:13 UTC

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

Author: olegk
Date: Thu Dec 22 07:58:13 2016
New Revision: 1775582

URL: http://svn.apache.org/viewvc?rev=1775582&view=rev
Log:
Updated src dist CopySpec

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=1775582&r1=1775581&r2=1775582&view=diff
==============================================================================
--- httpcomponents/project-release-tools/trunk/build.gradle (original)
+++ httpcomponents/project-release-tools/trunk/build.gradle Thu Dec 22 07:58:13 2016
@@ -773,6 +773,10 @@ CopySpec sources(File dir, Pom pom, Stri
             include '**/src/**'
             include '**/*.txt'
             include '**/*.xml'
+            include '**/*.yml'
+            include '**/*.md'
+            include '**/*.rdf'
+            include '**/docker/**'
             exclude '**/resources/**/*.keystore'
             exclude '**/resources/**/*.truststore'
             exclude '**/resources/**/*.png'
@@ -782,7 +786,6 @@ CopySpec sources(File dir, Pom pom, Stri
             exclude '**/target/**'
             exclude '**/build/**'
             exclude '**/lib/**'
-            exclude '**/.*/**'
             filter(Line.delim(delim), Line.filter())
         }
         from (dir) {
@@ -795,7 +798,6 @@ CopySpec sources(File dir, Pom pom, Stri
             exclude '**/target/**'
             exclude '**/build/**'
             exclude '**/lib/**'
-            exclude '**/.*/**'
         }
     }