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 2011/08/22 10:54:37 UTC

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

Author: donaldp
Date: Mon Aug 22 08:54:37 2011
New Revision: 1160151

URL: http://svn.apache.org/viewvc?rev=1160151&view=rev
Log:
Default build_on_make to false as otherwise every test requires a rebuild of the artifacts

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=1160151&r1=1160150&r2=1160151&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/ide/idea.rb (original)
+++ buildr/trunk/lib/buildr/ide/idea.rb Mon Aug 22 08:54:37 2011
@@ -429,7 +429,7 @@ module Buildr
         @jdk_version ||= buildr_project.compile.options.source || "1.6"
       end
 
-      def add_artifact(name, type, build_on_make = true)
+      def add_artifact(name, type, build_on_make = false)
         add_to_composite_component(self.artifacts) do |xml|
           xml.artifact(:name => name, :type => type, :"build-on-make" => build_on_make) do |xml|
             yield xml if block_given?