File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -97,12 +97,15 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
97
97
.settings(
98
98
name := " scodec-bits" ,
99
99
libraryDependencies ++= Seq (
100
- " org.scalatest" %%% " scalatest" % " 3.1.1" % " test" ,
101
- (" org.scalatestplus" %%% " scalacheck-1-14" % " 3.1.1.1" % " test" ).intransitive().withDottyCompat(scalaVersion.value),
102
- (" org.scalacheck" %%% " scalacheck" % " 1.14.3" % " test" ).withDottyCompat(scalaVersion.value)
100
+ " org.scalatest" %%% " scalatest" % " 3.1.1" % " test" ,
101
+ (" org.scalatestplus" %%% " scalacheck-1-14" % " 3.1.1.1" % " test" )
102
+ .intransitive()
103
+ .withDottyCompat(scalaVersion.value),
104
+ (" org.scalacheck" %%% " scalacheck" % " 1.14.3" % " test" ).withDottyCompat(scalaVersion.value)
103
105
),
104
106
libraryDependencies ++= {
105
- if (isDotty.value) Nil else Seq (" org.scala-lang" % " scala-reflect" % scalaVersion.value % " provided" )
107
+ if (isDotty.value) Nil
108
+ else Seq (" org.scala-lang" % " scala-reflect" % scalaVersion.value % " provided" )
106
109
},
107
110
autoAPIMappings := true ,
108
111
buildInfoPackage := " scodec.bits" ,
You can’t perform that action at this time.
0 commit comments