sbt/sbt_pending/notes/0.7.2.markdown

17 lines
1.8 KiB
Markdown
Raw Normal View History

2010-03-24 01:38:27 +01:00
### Fixes
* `Process.apply` no longer uses `CommandParser`. This should fix issues with the android-plugin.
* Arguments are passed to javac using an argument file (@). This should fix errors on Windows caused by long command lines.
* Fixed `console-project` for custom subprojects
* Works with Scala 2.8 trunk again.
2010-03-26 12:51:56 +01:00
* [API Documentation](http://simple-build-tool.googlecode.com/svn/artifacts/latest/api/index.html) is up again.
2010-03-24 01:38:27 +01:00
* Fixed logging level behavior on subprojects.
### Improvements
2010-03-26 12:51:56 +01:00
* Added `sbt.impl.Arguments` for parsing a command like a normal action (for [Processors](http://code.google.com/p/simple-build-tool/wiki/Processors))
* `Processor` split into `Processor`/`BasicProcessor`. `Processor` provides a high level of integration with command processing. `BasicProcessor` operates on a `Project` but does not affect command processing. See the [API documentation](http://simple-build-tool.googlecode.com/svn/artifacts/latest/api/sbt/processor$package.html) for the signature change.
2010-03-24 01:38:27 +01:00
* Can now use Launcher externally, including launching sbt outside of the official jar. This means a `Project` can now be created from tests.
* Added some String generation methods to `PathFinder`: `toString` for debugging and `absString` and `relativeString` for joining the absolute (relative) paths by the platform separator.
2010-03-26 12:51:56 +01:00
* All sbt code is now in a [single github repository](http://github.com/harrah/xsbt). Instructions for building from source have been updated.
* Added `webappUnmanaged: PathFinder` method to `DefaultWebProject`. `Path`s selected by this `PathFinder` will not be pruned by `prepare-webapp` and will not be packaged by package. For example, to exclude the GAE datastore directory:
override def webappUnmanaged = (temporaryWarPath / "WEB-INF" / "appengine-generated" ***)