You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/10/06 09:53:23 UTC

svn commit: r1529587 - /buildr/trunk/addon/buildr/gwt.rb

Author: donaldp
Date: Sun Oct  6 07:53:23 2013
New Revision: 1529587

URL: http://svn.apache.org/r1529587
Log:
Use the file task scoped to the project

Modified:
    buildr/trunk/addon/buildr/gwt.rb

Modified: buildr/trunk/addon/buildr/gwt.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/addon/buildr/gwt.rb?rev=1529587&r1=1529586&r2=1529587&view=diff
==============================================================================
--- buildr/trunk/addon/buildr/gwt.rb (original)
+++ buildr/trunk/addon/buildr/gwt.rb Sun Oct  6 07:53:23 2013
@@ -100,7 +100,7 @@ module Buildr
 
         unit_cache_dir = project._(:target, :gwt, :unit_cache_dir, output_key)
 
-        task = file(output_dir) do
+        task = project.file(output_dir) do
           Buildr::GWT.gwtc_main(module_names, dependencies + artifacts, output_dir, unit_cache_dir, options.dup)
         end
         task.enhance(dependencies)