Skip to content

Commit

Permalink
scala-parser-combinators shouldn't be optional dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ihostage committed Aug 28, 2023
1 parent a395916 commit 0d950cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ lazy val parser = project
scalaVersion := Scala212,
crossScalaVersions := ScalaVersions,
mimaSettings,
name := "twirl-parser",
libraryDependencies += parserCombinators(scalaVersion.value) % Optional,
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test,
libraryDependencies += "org.scalatest" %%% "scalatest" % ScalaTestVersion % Test,
name := "twirl-parser",
libraryDependencies += parserCombinators(scalaVersion.value),
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test,
libraryDependencies += "org.scalatest" %%% "scalatest" % ScalaTestVersion % Test,
)

lazy val compiler = project
Expand Down

0 comments on commit 0d950cc

Please sign in to comment.