Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsacha committed Jan 15, 2023
1 parent 5fb63ea commit 2e720a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ThisBuild / homepage := Some(new URL("https://github.com/ij-plugins/ijp-color"))
ThisBuild / startYear := Some(2002)
ThisBuild / licenses := Seq(("LGPL-2.1", new URL("https://opensource.org/licenses/LGPL-2.1")))

ThisBuild / scalaVersion := "3.0.2"
ThisBuild / crossScalaVersions := Seq("3.0.2", "2.13.8", "2.12.16")
ThisBuild / scalaVersion := "3.2.1"
ThisBuild / crossScalaVersions := Seq("3.2.1", "2.13.10", "2.12.17")

publishArtifact := false
publish / skip := true
Expand Down Expand Up @@ -69,8 +69,8 @@ val commonSettings = Seq(
Compile / compile / javacOptions ++= Seq("-deprecation", "-Xlint", "--release", "8"),
//
libraryDependencies ++= Seq(
"net.imagej" % "ij" % "1.53s",
"org.scalatest" %% "scalatest" % "3.2.11" % "test"
"net.imagej" % "ij" % "1.54b",
"org.scalatest" %% "scalatest" % "3.2.15" % "test"
),
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
//
Expand Down Expand Up @@ -107,8 +107,8 @@ lazy val ijp_debayer2sx_core = project.in(file("ijp-debayer2sx-core"))
libraryDependencies ++= {
if (isScala2(scalaVersion.value)) {
Seq(
"com.beachape" %% "enumeratum" % "1.7.0",
"io.github.metarank" %% "cfor" % "0.2"
"com.beachape" %% "enumeratum" % "1.7.2",
"io.github.metarank" %% "cfor" % "0.3"
)
} else {
Seq.empty[ModuleID]
Expand Down
4 changes: 2 additions & 2 deletions project/sbt-sonatype.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
//
// [https://github.com/xerial/sbt-sonatype]
//
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.15")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")

0 comments on commit 2e720a4

Please sign in to comment.