From d14afcf67d43101590f963480aa981cf8dd3eded Mon Sep 17 00:00:00 2001 From: Antonio Cunei Date: Tue, 26 May 2015 23:48:05 +0200 Subject: [PATCH] Adding notes for 2001/2027 --- notes/0.13.9/source-pom.markdown | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 notes/0.13.9/source-pom.markdown diff --git a/notes/0.13.9/source-pom.markdown b/notes/0.13.9/source-pom.markdown new file mode 100644 index 000000000..fa906e711 --- /dev/null +++ b/notes/0.13.9/source-pom.markdown @@ -0,0 +1,21 @@ + + [@cunei]: http://github.com/cunei + [2001]: https://github.com/sbt/sbt/issues/2001 + [2027]: https://github.com/sbt/sbt/pull/2027 + +### Fixes with compatibility implications + +- Starting with 0.13.9, the generated POM files no longer include dependencies on source or javadoc jars + obtained via withSources() or withJavadoc() + +### Improvements + +### Bug fixes + +### POM files no longer include certain source and javadoc jars + +When declaring library dependencies using the withSources() or withJavadoc() options, sbt was also including +in the pom file, as dependencies, the source or javadoc jars using the default Maven scope. Such dependencies +might be erroneously processed as they were regular jars by automated tools + +[#2001][2001]/[#2027][2027] by [@cunei][@cunei]