Skip to content

Commit 9265b2f

Browse files
committed
Switched scalatest artifact to official one
1 parent ca0a6ff commit 9265b2f

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

build.sbt

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -96,22 +96,14 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
9696
.settings(commonSettings: _*)
9797
.settings(
9898
name := "scodec-bits",
99-
libraryDependencies ++= {
100-
if (isDotty.value)
101-
Seq(
102-
"dev.travisbrown" %%% "scalatest" % "3.1.0-20200201-c4c847f-NIGHTLY" % "test",
103-
"dev.travisbrown" %%% "scalacheck-1-14" % "3.1.0.1-20200201-c4c847f-NIGHTLY" % "test"
104-
)
105-
else
106-
Seq(
107-
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
108-
"org.scalatest" %%% "scalatest" % "3.1.0" % "test",
109-
"org.scalatestplus" %%% "scalacheck-1-14" % "3.1.0.1" % "test"
110-
)
111-
},
11299
libraryDependencies ++= Seq(
113-
("org.scalacheck" %%% "scalacheck" % "1.14.3" % "test").withDottyCompat(scalaVersion.value)
100+
"org.scalatest" %%% "scalatest" % "3.1.1" % "test",
101+
(if (isDotty.value) "dev.travisbrown" else "org.scalatestplus") %%% "scalacheck-1-14" % "3.1.1.1" % "test",
102+
("org.scalacheck" %%% "scalacheck" % "1.14.3" % "test").withDottyCompat(scalaVersion.value)
114103
),
104+
libraryDependencies ++= {
105+
if (isDotty.value) Nil else Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided")
106+
},
115107
autoAPIMappings := true,
116108
buildInfoPackage := "scodec.bits",
117109
buildInfoKeys := Seq[BuildInfoKey](version, scalaVersion, gitHeadCommit),

0 commit comments

Comments
 (0)