mirror of https://github.com/sbt/sbt.git
Fix IvyLocalTests and MiMa checks after organization change
This commit is contained in:
parent
74af8296d5
commit
b36de08ccb
|
|
@ -140,7 +140,7 @@ lazy val core = crossProject
|
|||
Seq(f)
|
||||
}.taskValue
|
||||
},
|
||||
previousArtifacts := Set(organization.value %% moduleName.value % binaryCompatibilityVersion),
|
||||
previousArtifacts := Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion),
|
||||
binaryIssueFilters ++= {
|
||||
import com.typesafe.tools.mima.core._
|
||||
import com.typesafe.tools.mima.core.ProblemFilters._
|
||||
|
|
@ -215,7 +215,7 @@ lazy val cache = project
|
|||
libraryDependencies ++= Seq(
|
||||
"org.scalaz" %% "scalaz-concurrent" % "7.1.2"
|
||||
),
|
||||
previousArtifacts := Set(organization.value %% moduleName.value % binaryCompatibilityVersion),
|
||||
previousArtifacts := Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion),
|
||||
binaryIssueFilters ++= {
|
||||
import com.typesafe.tools.mima.core._
|
||||
import com.typesafe.tools.mima.core.ProblemFilters._
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ object IvyLocalTests extends TestSuite {
|
|||
|
||||
val tests = TestSuite{
|
||||
'coursier{
|
||||
val module = Module("com.github.alexarchambault", "coursier_2.11")
|
||||
val module = Module("io.get-coursier", "coursier_2.11")
|
||||
val version = coursier.util.Properties.version
|
||||
|
||||
val extraRepo = Some(Cache.ivy2Local)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
com.github.alexarchambault:coursier_2.11:1.0.0-SNAPSHOT:compile
|
||||
io.get-coursier:coursier_2.11:1.0.0-SNAPSHOT:compile
|
||||
org.scala-lang:scala-library:2.11.8:default
|
||||
org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4:default
|
||||
org.scala-lang.modules:scala-xml_2.11:1.0.4:default
|
||||
Loading…
Reference in New Issue