Skip to content

Commit

Permalink
Update version and dependencies. (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
balhoff authored Dec 6, 2023
1 parent 16e5ee7 commit ee8b19f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
lazy val zioVersion = "2.0.19"
lazy val scribeVersion = "3.12.2"
lazy val gitCommitString = SettingKey[String]("gitCommit")

lazy val commonSettings = Seq(
organization := "org.geneontology",
version := "2.3.1",
version := "2.3.2",
licenses := Seq("MIT license" -> url("https://opensource.org/licenses/MIT")),
homepage := Some(url("https://github.com/balhoff/relation-graph")),
scalaVersion := "2.13.12",
Expand Down Expand Up @@ -49,7 +50,8 @@ lazy val core = project
"org.apache.jena" % "apache-jena-libs" % "4.10.0" exclude("org.slf4j", "slf4j-log4j12"),
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
"com.outr" %% "scribe-slf4j" % scribeVersion % Test
)
)
.settings(publishSettings)
Expand All @@ -66,7 +68,7 @@ lazy val cli = project
executableScriptName := "relation-graph",
publish / skip := true,
libraryDependencies ++= Seq(
"com.outr" %% "scribe-slf4j" % "3.12.2",
"com.outr" %% "scribe-slf4j" % scribeVersion,
"com.github.alexarchambault" %% "case-app" % "2.0.6",
"io.circe" %% "circe-yaml" % "0.14.2",
),
Expand Down

0 comments on commit ee8b19f

Please sign in to comment.