Skip to content

Commit

Permalink
twirl changed it's groupId
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Oct 21, 2023
1 parent 1ac9c1d commit 8614bf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions project/OmnidocBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ object OmnidocBuild {
val scala3 = "3.3.1"

val playOrganisation = "org.playframework"
val twirlOrganisation = "org.playframework.twirl"
val scalaTestPlusPlayOrganisation = "org.scalatestplus.play"
val playOrganisations = Seq(playOrganisation, scalaTestPlusPlayOrganisation)
val playOrganisations = Seq(playOrganisation, twirlOrganisation, scalaTestPlusPlayOrganisation)

val snapshotVersionLabel = "3.0.x"

Expand Down Expand Up @@ -76,7 +77,7 @@ object OmnidocBuild {
playOrganisation %% "play-slick-evolutions" % playSlickVersion
)

val maybeTwirlModule = maybeTwirlVersion.map(v => playOrganisation %% "twirl-api" % v).toSeq
val maybeTwirlModule = maybeTwirlVersion.map(v => twirlOrganisation %% "twirl-api" % v).toSeq

val externalModules = playModules ++ maybeTwirlModule

Expand Down

0 comments on commit 8614bf6

Please sign in to comment.