Repository: buildr Updated Branches: refs/heads/master 0d1b3a4e8 -> a80ece18d
Fix a bug where 'default' configurations in IDEA projects were being incorrectly created. Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/2687200a Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/2687200a Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/2687200a Branch: refs/heads/master Commit: 2687200a12bac0a4b7200cbff7925bd199b1f6c1 Parents: 0d1b3a4 Author: Peter Donald <[email protected]> Authored: Sun May 25 15:42:05 2014 +1000 Committer: Peter Donald <[email protected]> Committed: Sun May 25 15:42:05 2014 +1000 ---------------------------------------------------------------------- CHANGELOG | 2 ++ lib/buildr/ide/idea.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/2687200a/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 2105e7b..7763e0c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,6 @@ 1.4.17 (2014-05-25) +* Fixed: Fix a bug where 'default' configurations in IDEA projects + were being incorrectly created. * Fixed: Fix the vcs detection in IDEA addon for 1.8.6 (!) versions of ruby by reordering blocks. * Change: Supply a default xsl file for generating the checkstyle http://git-wip-us.apache.org/repos/asf/buildr/blob/2687200a/lib/buildr/ide/idea.rb ---------------------------------------------------------------------- diff --git a/lib/buildr/ide/idea.rb b/lib/buildr/ide/idea.rb index f0c6271..78431b3 100644 --- a/lib/buildr/ide/idea.rb +++ b/lib/buildr/ide/idea.rb @@ -658,7 +658,7 @@ module Buildr #:nodoc: end def add_default_configuration(type, factory_name) - add_configuration(nil, type, factory_name) + add_configuration(nil, type, factory_name, true) end def add_postgres_data_source(name, options = {})
