Skip to content

Commit

Permalink
tidy: drop unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
i10416 committed Jul 2, 2023
1 parent e0d3240 commit 5b82bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ lazy val tests = (crossProject(JSPlatform, JVMPlatform) in file("tests"))
)
.settings(commonSettings)
.settings(noPublishSettings)
.settings(Dependencies.tests)
.jsSettings(commonJsSettings)
.jsSettings(Dependencies.testsJS)
.jvmSettings(commonJvmSettings)
Expand Down
8 changes: 2 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ object Dependencies {
"org.scala-lang.modules" %%% "scala-parser-combinators" % version.parserc
),
libraryDependencies ++= (if (scalaVersion.value.startsWith("2."))
Seq("com.chuusai" %%% "shapeless" % version.shapeless)
else Seq("org.typelevel" %% "shapeless3-deriving" % "3.0.1"))
Seq("com.chuusai" %%% "shapeless" % version.shapeless)
else Seq.empty)
)

lazy val coreJS = Def.settings {
Expand All @@ -58,10 +58,6 @@ object Dependencies {
)
}

lazy val tests = Def.settings {
libraryDependencies ++= Seq()
}

lazy val testsJS = Def.settings {
libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % version.scalaJavaTime
}
Expand Down

0 comments on commit 5b82bdf

Please sign in to comment.