You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/11/01 16:07:54 UTC

svn commit: r1196038 - /tapestry/tapestry5/branches/5.3/build.gradle

Author: hlship
Date: Tue Nov  1 15:07:54 2011
New Revision: 1196038

URL: http://svn.apache.org/viewvc?rev=1196038&view=rev
Log:
Fix the zippedSources target to exclude some unnecessary and derived files

Modified:
    tapestry/tapestry5/branches/5.3/build.gradle

Modified: tapestry/tapestry5/branches/5.3/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.3/build.gradle?rev=1196038&r1=1196037&r2=1196038&view=diff
==============================================================================
--- tapestry/tapestry5/branches/5.3/build.gradle (original)
+++ tapestry/tapestry5/branches/5.3/build.gradle Tue Nov  1 15:07:54 2011
@@ -266,6 +266,10 @@ task zippedSources(type: Zip) {
     classifier = "sources"
 
     from project.projectDir
+    exclude "out/**"
+    exclude "**/*.iml"
+    exclude "**/*.ipr"
+    exclude "**/*.iws"
     exclude "**/.*/**"
     exclude "**/bin/**"
     exclude "**/target/**"