Skip to content

Commit

Permalink
Update dependencies (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k authored Jan 10, 2024
1 parent b3b5b4b commit db931da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import scala.xml.NodeSeq

def jodaDependency = "joda-time" % "joda-time" % "2.10.5"
def jodaDependency = "joda-time" % "joda-time" % "2.12.6"

val commonSettings = Seq(
version := "7.1",
organization := "jp.t2v",
scalaVersion := "3.0.0",
crossScalaVersions := Seq("2.11.12", "2.12.12", "2.13.4", "3.0.0"),
scalaVersion := "3.3.1",
crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1"),
scalacOptions ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) => Seq("-unchecked", "-deprecation", "-feature", "-language:implicitConversions"/*, "-Yexplicit-nulls"*/)
case _ => Seq("-unchecked", "-deprecation", "-feature", "-language:implicitConversions", "-Xdisable-assertions")
}
},
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.9" % "test"
"org.scalatest" %% "scalatest" % "3.2.17" % "test"
),
publishMavenStyle := true,
publishTo := {
Expand Down Expand Up @@ -50,8 +50,8 @@ val commonSettings = Seq(
)

lazy val root = (project in file(".")).aggregate(core, joda).settings(
scalaVersion := "3.0.0",
crossScalaVersions := Seq("2.11.12", "2.12.12", "2.13.4", "3.0.0"),
scalaVersion := "3.3.1",
crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1"),
publishMavenStyle := true,
publish := { },
publishArtifact := false,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.2
sbt.version=1.9.8

0 comments on commit db931da

Please sign in to comment.