Skip to content

Commit

Permalink
Workaround scala-xml dependency problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Oct 3, 2022
1 parent 7f1e107 commit 791030c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
lazy val plugins = (project in file(".")).dependsOn(sbtPlayEbean)
.settings(
scalaVersion := "2.12.17"
)

lazy val sbtPlayEbean = ProjectRef(Path.fileProperty("user.dir").getParentFile, "plugin")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
lazy val plugins = (project in file(".")).settings(
scalaVersion := "2.12.17", // TODO: remove when upgraded to sbt 1.8.0 (maybe even 1.7.2), see https://github.com/sbt/sbt/pull/7021
)

resolvers ++= DefaultOptions.resolvers(snapshot = true)
addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % sys.props("project.version"))
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
lazy val plugins = (project in file(".")).settings(
scalaVersion := "2.12.17", // TODO: remove when upgraded to sbt 1.8.0 (maybe even 1.7.2), see https://github.com/sbt/sbt/pull/7021
)

resolvers ++= DefaultOptions.resolvers(snapshot = true)
addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % sys.props("project.version"))

0 comments on commit 791030c

Please sign in to comment.