You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/06/10 02:44:59 UTC

svn commit: r1134153 - /tapestry/tapestry5/trunk/build.gradle

Author: hlship
Date: Fri Jun 10 00:44:59 2011
New Revision: 1134153

URL: http://svn.apache.org/viewvc?rev=1134153&view=rev
Log:
TAP5-116: Fix formatting

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1134153&r1=1134152&r2=1134153&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Fri Jun 10 00:44:59 2011
@@ -167,16 +167,16 @@ task wrapper(type: Wrapper) {
 }
 
 task distSourcesZip(type: Zip) {
- classifier = "sources"
- baseName = "apache-tapestry"
- version = project.version
- destinationDir = buildDir
- 
- from project.projectDir
- exclude "**/.*/**"
- exclude "**/bin/**"
- exclude "**/target/**"
- exclude "**/build/**"
- exclude "**/test-output/**"  // Left around by TestNG sometimes
+  classifier = "sources"
+  baseName = "apache-tapestry"
+  version = project.version
+  destinationDir = buildDir
+
+  from project.projectDir
+  exclude "**/.*/**"
+  exclude "**/bin/**"
+  exclude "**/target/**"
+  exclude "**/build/**"
+  exclude "**/test-output/**"  // Left around by TestNG sometimes
  
 }
\ No newline at end of file