Repository: buildr Updated Branches: refs/heads/master 36996ac87 -> c7f10e6d0
Make GWT 2.8.2 the default version unless otherwise specified Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/c7f10e6d Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/c7f10e6d Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/c7f10e6d Branch: refs/heads/master Commit: c7f10e6d0a3329f0d60d568e7d2979c9eb7d5f92 Parents: 36996ac Author: Peter Donald <[email protected]> Authored: Mon Nov 20 21:55:51 2017 +1100 Committer: Peter Donald <[email protected]> Committed: Mon Nov 20 21:55:51 2017 +1100 ---------------------------------------------------------------------- CHANGELOG | 2 +- addon/buildr/gwt.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/c7f10e6d/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index aa4fcea..3c3292c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,7 @@ (i.e. `package(:jar)` and `package(:jar, :classifier => :gwt)`) could have the pom named after the package with the classifier rather than the package without a classifer. (i.e. the pom could be incorrectly defined as `mypackage-1.0.0-gwt.pom` rather than `mypackage-1.0.0.pom`). -* Added: GWT Addon: Add support for GWT 2.8.2 release. +* Added: GWT Addon: Add support for GWT 2.8.2 release and make it the default version unless otherwise specified. * Added: GWT Addon: Added support for `:js_exports` boolean to enable "JsInteropExports". * Added: IDEA Extension: Added support for `:open_in_browser` boolean passed to `ipr.add_gwt_configuration` * Added: BUILDR-732 - Support bnd version 2.1.0 or more. Submitted By Eric Bruneton. http://git-wip-us.apache.org/repos/asf/buildr/blob/c7f10e6d/addon/buildr/gwt.rb ---------------------------------------------------------------------- diff --git a/addon/buildr/gwt.rb b/addon/buildr/gwt.rb index 91dd384..66b26b8 100644 --- a/addon/buildr/gwt.rb +++ b/addon/buildr/gwt.rb @@ -22,7 +22,7 @@ module Buildr end def version - @version || Buildr.settings.build['gwt'] || '2.8.1' + @version || Buildr.settings.build['gwt'] || '2.8.2' end # The specs for requirements
