This commit is contained in:
Eugene Yokota 2015-06-20 00:51:42 -04:00
parent 6fc13d0308
commit 81f175ddbf
6 changed files with 10 additions and 12 deletions

View File

@ -3,7 +3,7 @@ name := "play-html-compressor"
scalaVersion := "2.11.1"
val pom = <xml:group><scm>
val pom = <scm>
<url>git@github.com:mohiva/play-html-compressor.git</url>
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
</scm>
@ -13,9 +13,6 @@ val pom = <xml:group><scm>
<name>Christian Kaps</name>
<url>http://mohiva.com</url>
</developer>
</developers></xml:group>
</developers>
publishMavenStyle := true

View File

@ -22,7 +22,6 @@ parallelExecution in Test := false
// publishing
pomExtra :=
<xml:group>
<url>http://nbronson.github.com/scala-stm/</url>
<licenses>
<license>
@ -42,7 +41,6 @@ pomExtra :=
<email>ngbronson@gmail.com</email>
</developer>
</developers>
</xml:group>
publishMavenStyle := true

View File

@ -2,7 +2,7 @@ import sbt._
val scmpom = taskKey[xml.NodeBuffer]("Node buffer")
scmpom := <xml:group><scm>
scmpom := <scm>
<url>git@github.com:mohiva/play-html-compressor.git</url>
<connection>scm:git:git@github.com:mohiva/play-html-compressor.git</connection>
</scm>
@ -13,4 +13,4 @@ scmpom := <xml:group><scm>
<url>http://mohiva.com</url>
</developer>
</developers>
<a></a></xml:group>
<a></a>

View File

@ -1 +1 @@
scmpom := <xml:group><a/><b a="rt">OK</b></xml:group>
scmpom := <a/><b a="rt">OK</b>

View File

@ -2,4 +2,4 @@ import sbt._
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>

View File

@ -11,7 +11,7 @@
[@PanAeon]: https://github.com/PanAeon
[@asflierl]: http://github.com/asflierl
[@matthewfarwell]: http://github.com/matthewfarwell
[SI9027]: https://issues.scala-lang.org/browse/SI-9027
[1950]: https://github.com/sbt/sbt/pull/1950
[1987]: https://github.com/sbt/sbt/pull/1987
[1970]: https://github.com/sbt/sbt/pull/1970
@ -40,11 +40,14 @@
[2035]: https://github.com/sbt/sbt/pull/2035
[2001]: https://github.com/sbt/sbt/issues/2001
[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
- 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.
- 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