1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
import com.typesafe.tools.mima.plugin.{MimaPlugin, MimaKeys}
scalaModuleSettings
name := "scala-xml"
version := "1.0.3-SNAPSHOT"
scalaVersion := "2.11.4"
snapshotScalaBinaryVersion := "2.11"
// important!! must come here (why?)
scalaModuleOsgiSettings
OsgiKeys.exportPackage := Seq(s"scala.xml.*;version=${version.value}")
libraryDependencies += "junit" % "junit" % "4.11" % "test"
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test"
//// testing:
// used in CompilerErrors test
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml*")
MimaPlugin.mimaDefaultSettings
MimaKeys.previousArtifact := Some(organization.value % s"${name.value}_2.11" % "1.0.1")
// run mima during tests
test in Test := {
MimaKeys.reportBinaryIssues.value
(test in Test).value
}
|