Skip to content

Commit

Permalink
Merge pull request #271 from mkurz/twirl_org_change
Browse files Browse the repository at this point in the history
twirl changed it's `groupId`
  • Loading branch information
mkurz authored Oct 21, 2023
2 parents 1ac9c1d + 8614bf6 commit 99bd2d4
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 99bd2d4

Please sign in to comment.