Skip to content

Commit

Permalink
Increased version to 0.6.0
Browse files Browse the repository at this point in the history
Removed SbtEclipsifyPlugin trait
Moved 0.5.5 note to 0.6.0 and updated accordingly
Updated readme
  • Loading branch information
Stefan Langer committed Aug 11, 2010
1 parent d3891d5 commit 79b9bda
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 18 deletions.
7 changes: 3 additions & 4 deletions README.md
@@ -1,7 +1,6 @@
# SbtEclipsify

Plugin for sbt (http://code.google.com/p/simple-build-tool/) 0.7.x for creating .classpath and .project files for the Ecipse IDE (http://www.eclipse.org).
It is currently in Beta state and is not feature complete.
If you need to use this plugin with sbt version prior to 0.5.6 then you need to use version 0.4.1

## License
Expand All @@ -10,7 +9,7 @@ Just like sbt this software is distributed under the BSD License (http://www.ope
## Getting the Plugin
In order to use the plugin you can either download one of the provided jars in the dist folder or you can build it yourself.
Easiest is to add a dependency to the plugin in your plugin defintion `"de.element34" % "sbt-eclipsify" % "<version>"`.
Calling `update` in sbt will pull in the needed dependency.
Calling `reload` in sbt will pull in the needed dependency.
For setting up the plugin see "Using the Plugin in your own project" below.

### Downloading
Expand Down Expand Up @@ -53,7 +52,7 @@ next create a file name MySbtProjectPlugins.scala and add the following text to
import sbt._

class MySbtProjectPlugins(info: ProjectInfo) extends PluginDefinition(info) {
lazy val eclipse = "de.element34" % "sbt-eclipsify" % "0.5.5"
lazy val eclipse = "de.element34" % "sbt-eclipsify" % "0.6.0"
}

This will enable your project to get the plugin in order to use it you need to add it to your project defintion.
Expand All @@ -70,7 +69,7 @@ After reloading the project you should have a new action named "eclipse" which w

Now all you need to do is import the Project into your Eclipse workspace as an existing Project and everything should work.

__Note__: The old trait SbtEclipsifyPlugin has been marked deprecated as of 0.5.1 and will be removed in a future version.
__Note__: The old trait SbtEclipsifyPlugin has been removed from this version.

## Known Issues
Crossbuilds are not supported officially but they might work (testing still pending).
Expand Down
5 changes: 0 additions & 5 deletions notes/0.5.5.markdown

This file was deleted.

8 changes: 8 additions & 0 deletions notes/0.6.0.markdown
@@ -0,0 +1,8 @@
### Update names to newly structured Scala IDE ###

* fixed names for Scala container, nature and builder to new Scala IDE names
* removed trait SbtEclipsifyPlugin use Eclipsify instead

__WARNING__: This upgrade will not work on versions older then master-2.8.final of the Scala IDE

Thanks to plalloni for this fix
3 changes: 2 additions & 1 deletion notes/about.markdown
@@ -1,6 +1,7 @@
[sbt-eclipsify][1] is a [sbt][2] plugin provided under a BSD-License. It generates .classpath and .project files for the [Eclipse IDE][3] from a [sbt][2] project.

&copy; 2010 Stefan Langer and others, Element34
&copy; 2010 Stefan Langer and others, Element34<br />
See contributors.txt for list of contributors

[1]: http://github.com/musk/SbtEclipsify
[2]: http://code.google.com/p/simple-build-tool
Expand Down
4 changes: 2 additions & 2 deletions project/build.properties
@@ -1,5 +1,5 @@
#Project properties
#Sun Jun 27 15:01:03 CEST 2010
#Wed Aug 11 22:22:42 CEST 2010
project.name=sbt-eclipsify
def.scala.version=2.7.7
include.plugin=true
Expand All @@ -10,5 +10,5 @@ eclipse.name=Eclipsify
build.scala.versions=2.7.7
project.organization=de.element34
project.initialize=false
project.version=0.5.5
project.version=0.6.0
include.project=true
6 changes: 0 additions & 6 deletions src/main/scala/de/element34/sbteclipsify/SbtEclipsify.scala
Expand Up @@ -68,9 +68,3 @@ trait Eclipsify extends Project {
*/
def writeProjectFile(log: Logger): Option[String] = ProjectFile(this, log).writeFile
}

/**
* @deprecated Use Eclipsify instead. This trait will be removed in 0.6
*/
@deprecated
trait SbtEclipsifyPlugin extends Eclipsify

0 comments on commit 79b9bda

Please sign in to comment.