diff --git a/build.sbt b/build.sbt index d30a0080b5..abfe8a44b6 100644 --- a/build.sbt +++ b/build.sbt @@ -131,7 +131,7 @@ lazy val testsInput = project scalacOptions += warnUnusedImports.value, // For RemoveUnused scalacOptions += "-Ywarn-unused", // For RemoveUnusedTerms logLevel := Level.Error, // avoid flood of compiler warnings - libraryDependencies += "com.twitter" %% "bijection-core" % "0.9.6", + libraryDependencies += bijectionCore, testsInputOutputSetting, coverageEnabled := false ) @@ -147,7 +147,7 @@ lazy val testsOutput = project ), testsInputOutputSetting, coverageEnabled := false, - libraryDependencies += "com.twitter" %% "bijection-core" % "0.9.6" + libraryDependencies += bijectionCore ) lazy val testkit = project diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2aaa20c46e..9e2e9b20f7 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -21,6 +21,7 @@ object Dependencies { def metacp = "org.scalameta" %% "metacp" % scalametaV def semanticdbPluginLibrary = "org.scalameta" % "semanticdb-scalac-core" % scalametaV cross CrossVersion.full def scalameta = "org.scalameta" %% "scalameta" % scalametaV + def bijectionCore = "com.twitter" %% "bijection-core" % "0.9.7" def scalatest = "org.scalatest" %% "scalatest" % "3.1.2" def scalacheck = "org.scalacheck" %% "scalacheck" % "1.14.3"