mirror of https://github.com/sbt/sbt.git
Fixes #1666
This commit is contained in:
parent
6fc13d0308
commit
81f175ddbf
|
|
@ -3,7 +3,7 @@ name := "play-html-compressor"
|
||||||
|
|
||||||
scalaVersion := "2.11.1"
|
scalaVersion := "2.11.1"
|
||||||
|
|
||||||
val pom = <xml:group><scm>
|
val pom = <scm>
|
||||||
<url>git@github.com:mohiva/play-html-compressor.git</url>
|
<url>git@github.com:mohiva/play-html-compressor.git</url>
|
||||||
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
|
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
@ -13,9 +13,6 @@ val pom = <xml:group><scm>
|
||||||
<name>Christian Kaps</name>
|
<name>Christian Kaps</name>
|
||||||
<url>http://mohiva.com</url>
|
<url>http://mohiva.com</url>
|
||||||
</developer>
|
</developer>
|
||||||
</developers></xml:group>
|
</developers>
|
||||||
|
|
||||||
publishMavenStyle := true
|
publishMavenStyle := true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ parallelExecution in Test := false
|
||||||
// publishing
|
// publishing
|
||||||
|
|
||||||
pomExtra :=
|
pomExtra :=
|
||||||
<xml:group>
|
|
||||||
<url>http://nbronson.github.com/scala-stm/</url>
|
<url>http://nbronson.github.com/scala-stm/</url>
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
|
|
@ -42,7 +41,6 @@ pomExtra :=
|
||||||
<email>ngbronson@gmail.com</email>
|
<email>ngbronson@gmail.com</email>
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
</xml:group>
|
|
||||||
|
|
||||||
publishMavenStyle := true
|
publishMavenStyle := true
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import sbt._
|
||||||
|
|
||||||
val scmpom = taskKey[xml.NodeBuffer]("Node buffer")
|
val scmpom = taskKey[xml.NodeBuffer]("Node buffer")
|
||||||
|
|
||||||
scmpom := <xml:group><scm>
|
scmpom := <scm>
|
||||||
<url>git@github.com:mohiva/play-html-compressor.git</url>
|
<url>git@github.com:mohiva/play-html-compressor.git</url>
|
||||||
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
|
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
@ -13,4 +13,4 @@ scmpom := <xml:group><scm>
|
||||||
<url>http://mohiva.com</url>
|
<url>http://mohiva.com</url>
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
<a></a></xml:group>
|
<a></a>
|
||||||
|
|
@ -1 +1 @@
|
||||||
scmpom := <xml:group><a/><b a="rt">OK</b></xml:group>
|
scmpom := <a/><b a="rt">OK</b>
|
||||||
|
|
@ -2,4 +2,4 @@ import sbt._
|
||||||
|
|
||||||
val scmpom = taskKey[xml.NodeBuffer]("Node buffer")
|
val scmpom = taskKey[xml.NodeBuffer]("Node buffer")
|
||||||
|
|
||||||
scmpom := <xml:group><a/><b a="rt">OK</b></xml:group>
|
scmpom := <a/><b a="rt">OK</b>
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
[@PanAeon]: https://github.com/PanAeon
|
[@PanAeon]: https://github.com/PanAeon
|
||||||
[@asflierl]: http://github.com/asflierl
|
[@asflierl]: http://github.com/asflierl
|
||||||
[@matthewfarwell]: http://github.com/matthewfarwell
|
[@matthewfarwell]: http://github.com/matthewfarwell
|
||||||
|
[SI9027]: https://issues.scala-lang.org/browse/SI-9027
|
||||||
[1950]: https://github.com/sbt/sbt/pull/1950
|
[1950]: https://github.com/sbt/sbt/pull/1950
|
||||||
[1987]: https://github.com/sbt/sbt/pull/1987
|
[1987]: https://github.com/sbt/sbt/pull/1987
|
||||||
[1970]: https://github.com/sbt/sbt/pull/1970
|
[1970]: https://github.com/sbt/sbt/pull/1970
|
||||||
|
|
@ -40,11 +40,14 @@
|
||||||
[2035]: https://github.com/sbt/sbt/pull/2035
|
[2035]: https://github.com/sbt/sbt/pull/2035
|
||||||
[2001]: https://github.com/sbt/sbt/issues/2001
|
[2001]: https://github.com/sbt/sbt/issues/2001
|
||||||
[2027]: https://github.com/sbt/sbt/pull/2027
|
[2027]: https://github.com/sbt/sbt/pull/2027
|
||||||
|
[1666]: https://github.com/sbt/sbt/issues/1666
|
||||||
|
[2068]: https://github.com/sbt/sbt/pull/2068
|
||||||
|
|
||||||
### Fixes with compatibility implications
|
### Fixes with compatibility implications
|
||||||
|
|
||||||
- Starting 0.13.9, `crossScalaVersions` default value is fixed back to the older 0.12.x behavior. See below for details.
|
- Starting 0.13.9, `crossScalaVersions` default value is fixed back to the older 0.12.x behavior. See below for details.
|
||||||
- Starting 0.13.9, the generated POM files no longer include dependencies on source or javadoc jars obtained via `withSources()` or `withJavadoc()`. See below for details.
|
- Starting 0.13.9, the generated POM files no longer include dependencies on source or javadoc jars obtained via `withSources()` or `withJavadoc()`. See below for details.
|
||||||
|
- Scala version is bumped to 2.10.5. This brings in the fix for [SI-9027][SI9027]: XML node sequence literal bug. [#1666][1666]/[#2068][2068] by [@eed3si9n][@eed3si9n]
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue