Repository: buildr Updated Branches: refs/heads/master 6694ddb56 -> 389d74896
Change Eclipse Scala project natures from ch.epfl.lamp.sdt.core.scalanature to org.scala-ide.sdt.core.scalanature Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/389d7489 Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/389d7489 Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/389d7489 Branch: refs/heads/master Commit: 389d74896c8f6796cbb7620a7ac19a3dc589dfdf Parents: 6694ddb Author: Antoine Toulme <[email protected]> Authored: Sun Aug 21 18:25:21 2016 -0700 Committer: Antoine Toulme <[email protected]> Committed: Sun Aug 21 18:25:21 2016 -0700 ---------------------------------------------------------------------- CHANGELOG | 1 + lib/buildr/ide/eclipse.rb | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/389d7489/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index d887b45..3c92598 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -25,6 +25,7 @@ * Change: Remove JBehave::REQUIRES, deprecated. * Change: Remove JMock::REQUIRES, deprecated. * Change: Remove ScalaCheck::REQUIRES, deprecated. +* Change: Change Eclipse Scala project natures from ch.epfl.lamp.sdt.core.scalanature to org.scala-ide.sdt.core.scalanature * Added: Travis badge to README.rdoc * Added: Added Rubygems badges to README.rdoc * Added: BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon. http://git-wip-us.apache.org/repos/asf/buildr/blob/389d7489/lib/buildr/ide/eclipse.rb ---------------------------------------------------------------------- diff --git a/lib/buildr/ide/eclipse.rb b/lib/buildr/ide/eclipse.rb index 95917b7..1ad6125 100644 --- a/lib/buildr/ide/eclipse.rb +++ b/lib/buildr/ide/eclipse.rb @@ -460,9 +460,9 @@ module Buildr #:nodoc: module Scala include Extension - NATURE = 'ch.epfl.lamp.sdt.core.scalanature' - CONTAINER = 'ch.epfl.lamp.sdt.launching.SCALA_CONTAINER' - BUILDER = 'ch.epfl.lamp.sdt.core.scalabuilder' + NATURE = 'org.scala-ide.sdt.core.scalanature' + CONTAINER = 'org.scala-ide.sdt.launching.SCALA_CONTAINER' + BUILDER = 'org.scala-ide.sdt.core.scalabuilder' after_define :eclipse => :eclipse_scala after_define :eclipse_scala do |project|
