-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop sbt 0.13 support #294
Drop sbt 0.13 support #294
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ready when interplay 3.0.0
is available.
project/plugins.sbt
Outdated
@@ -1,4 +1,4 @@ | |||
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.1.4")) | |||
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.1.5-ee0cdca")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If only interplay
was using sbt-dynver
libraryDependencies ++= scalaParserCombinators(scalaVersion.value), | ||
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test", | ||
libraryDependencies += "org.scalatest" %%% "scalatest" % ScalaTestVersion % "test", | ||
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % ScalaParserCombinatorsVersion % "optional", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@marcospereira @mkurz
Folks, do you remember, why scope of scala-parser-combinators
was changed to optional
? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think optional makes sense here anymore. It was added in f288c70. I checked out that revision, removed scala-parser-combinators and it still compiled. It seems things changed since then.
We can remove optional here I think since twirl seems to not work anymore without scala-parser-combinators.
Depends on playframework/interplay#101