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 2012/04/27 07:57:46 UTC

svn commit: r1331231 - /buildr/trunk/lib/buildr/ide/idea.rb

Author: donaldp
Date: Fri Apr 27 05:57:45 2012
New Revision: 1331231

URL: http://svn.apache.org/viewvc?rev=1331231&view=rev
Log:
Update the helper method for configuring the GWT facet to the format recognized by the most recent version of IDEA

Modified:
    buildr/trunk/lib/buildr/ide/idea.rb

Modified: buildr/trunk/lib/buildr/ide/idea.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/ide/idea.rb?rev=1331231&r1=1331230&r2=1331231&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/ide/idea.rb (original)
+++ buildr/trunk/lib/buildr/ide/idea.rb Fri Apr 27 05:57:45 2012
@@ -244,7 +244,7 @@ module Buildr
           {
             :webFacet => "Web",
             :compilerMaxHeapSize => "512",
-            :compilerParameters => "-draftCompile -localWorkers 2",
+            :compilerParameters => "-draftCompile -localWorkers 2 -strict",
             :gwtSdkUrl => "file://$GWT_TOOLS$",
             :gwtScriptOutputStyle => "PRETTY"
           }.merge(options[:settings] || {})
@@ -256,7 +256,7 @@ module Buildr
             end
             c.packaging do |d|
               modules.each_pair do |k, v|
-                d.module :name => v, :path => k
+                d.module :name => k, :enabled => v
               end
             end
           end