2014-12-04 23:35:30 +01:00
[@cunei]: https://github.com/cunei
[@eed3si9n]: https://github.com/eed3si9n
[@gkossakowski]: https://github.com/gkossakowski
[@jsuereth]: https://github.com/jsuereth
2014-12-12 18:10:26 +01:00
[@ajozwik]: https://github.com/ajozwik
[@dwickern]: https://github.com/dwickern
2014-12-04 23:35:30 +01:00
[@kretes]: https://github.com/kretes
[@j-keck]: https://github.com/j-keck
2014-12-12 18:10:26 +01:00
2014-12-04 23:35:30 +01:00
[875]: https://github.com/sbt/sbt/issues/875
[1180]: https://github.com/sbt/sbt/issues/1180
[1542]: https://github.com/sbt/sbt/issues/1542
[1702]: https://github.com/sbt/sbt/pull/1702
2014-12-12 18:10:26 +01:00
[1741]: https://github.com/sbt/sbt/pull/1741
2014-12-04 23:35:30 +01:00
[1746]: https://github.com/sbt/sbt/pull/1746
[1748]: https://github.com/sbt/sbt/issues/1748
2014-12-12 18:10:26 +01:00
[1771]: https://github.com/sbt/sbt/pull/1771
2014-10-21 21:42:40 +02:00
### Improvements
2014-12-12 18:10:26 +01:00
- Discovered main classes will be sorted. [#1180][1180] by [@kretes][@kretes]
- Implemented a new mechanism of forking javac, whereby errors are captured. Also more likely to run in-process. [#1702][1702] by [@jsuereth][@jsuereth]
2014-12-04 23:35:30 +01:00
- Adds project-level dependency exclusions. See below.
2014-10-31 21:04:43 +01:00
2014-12-12 18:10:26 +01:00
### Fixes
2014-10-31 21:04:43 +01:00
2014-12-12 18:10:26 +01:00
- Javac warnings are treated as warnings. [#1702][1702]/[#875][875] by [@jsuereth][@jsuereth]
- `compilerReporter` is fed to javac during incremental compilation. [#1542][1542] by [@jsuereth][@jsuereth]
- Ignores hidden build files from the build. [#1746][1746] by [@j-keck][@j-keck]
- Fixes build.sbt parsing of multiple import. [#1741][1741] by [@ajozwik][@ajozwik]
- Fixes ANSI escape code for overwriting lines on Windows. [#1771][1771] by [@dwickern][@dwickern]
2014-12-04 23:35:30 +01:00
2014-12-12 18:10:26 +01:00
### Project-level dependency exclusions
2014-12-04 23:35:30 +01:00
sbt 0.13.8 adds project-level dependency exclusions:
excludeDependencies += "org.apache.logging.log4j"
excludeDependencies += "com.example" %% "foo"
In the first example, all artifacts from the organization `"org.apache.logging.log4j"` are excluded from the managed dependency.
2014-12-12 18:10:26 +01:00
In the second example, artifacts with the organization `"com.example"` and the name `"foo"` cross versioned to the current `scalaVersion` are excluded. [#1748][1748] by [@eed3si9n][@eed3si9n]