-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #439 from mkurz/downgrade_modules
Downgrade scala-parser-combinators and scala-xml
- Loading branch information
Showing
5 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
pullRequests.frequency = "@weekly" | ||
commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})" | ||
|
||
updates.pin = [ | ||
// See comment in build.sbt why we want to pin these two deps to 1.x | ||
{ groupId = "org.scala-lang.modules", artifactId = "scala-xml", version = "1." }, | ||
{ groupId = "org.scala-lang.modules", artifactId = "scala-parser-combinators", version = "1." } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % sys.props("project.version")) | ||
|
||
// Next line can be removed when dropping Scala 2.12? See https://github.com/playframework/twirl/pull/424 | ||
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always |
4 changes: 0 additions & 4 deletions
4
sbt-twirl/src/sbt-test/twirl/scalajs-compile/project/plugins.sbt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % sys.props("project.version")) | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") | ||
|
||
// Next line can be removed when dropping Scala 2.12? See https://github.com/playframework/twirl/pull/424 | ||
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always | ||
|