File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,25 @@ lazy val standardSettings = Def.settings(
73
73
Seq (
74
74
" org.apache.poi" % " poi" % poiVersion,
75
75
" org.apache.poi" % " poi-ooxml" % poiVersion,
76
- " org.scalaz" %% " scalaz-effect" % scalazVersion cross CrossVersion .for3Use2_13,
77
- " org.specs2" %% " specs2-core" % " 4.10.6" % " test" cross CrossVersion .for3Use2_13,
78
- " org.specs2" %% " specs2-scalacheck" % " 4.10.6" % " test" cross CrossVersion .for3Use2_13,
79
- " org.scalaz" %% " scalaz-scalacheck-binding" % scalazVersion % " test" cross CrossVersion .for3Use2_13
76
+ " org.scalaz" %% " scalaz-effect" % scalazVersion,
77
+ " org.scalaz" %% " scalaz-scalacheck-binding" % scalazVersion % " test"
80
78
)
81
79
},
80
+ libraryDependencies += {
81
+ scalaBinaryVersion.value match {
82
+ case " 2.11" =>
83
+ " org.specs2" %% " specs2-scalacheck" % " 4.10.6" % " test"
84
+ case _ =>
85
+ " org.specs2" %% " specs2-scalacheck" % " 4.13.2" % " test" cross CrossVersion .for3Use2_13
86
+ }
87
+ },
88
+ conflictWarning := {
89
+ if (scalaBinaryVersion.value == " 3" ) {
90
+ ConflictWarning (" warn" , Level .Warn , false )
91
+ } else {
92
+ conflictWarning.value
93
+ }
94
+ },
82
95
publishMavenStyle := true ,
83
96
Test / publishArtifact := false ,
84
97
credentialsSetting,
You can’t perform that action at this time.
0 commit comments