Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ lazy val PlayProject = Project("Play", file("core/play"))
scalaVersion.value,
sbtVersion.value,
Dependencies.akkaVersion,
Dependencies.akkaHttpVersion,
(Compile / sourceManaged).value
)
)
Expand Down Expand Up @@ -100,7 +99,6 @@ lazy val SbtPluginProject = PlaySbtPluginProject("Sbt-Plugin", "dev-mode/sbt-plu
(SbtRoutesCompilerProject / scalaVersion).value,
sbtVersion.value,
Dependencies.akkaVersion,
Dependencies.akkaHttpVersion,
(Compile / sourceManaged).value
)
}.taskValue
Expand Down
5 changes: 0 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import snapshot4s.BuildInfo.snapshot4sVersion

object Dependencies {
val akkaVersion: String = sys.props.getOrElse("akka.version", "2.6.21")
val akkaHttpVersion = sys.props.getOrElse("akka.http.version", "10.2.10")

val logback = "ch.qos.logback" % "logback-classic" % "1.5.37"

Expand Down Expand Up @@ -66,10 +65,6 @@ object Dependencies {
("io.netty" % "netty-transport-native-epoll" % nettyVersion).classifier("linux-x86_64")
) ++ specs2Deps.map(_ % Test)

val akkaHttp = "com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion

val akkaHttp2Support = "com.typesafe.akka" %% "akka-http2-support" % akkaHttpVersion

val cookieEncodingDependencies = slf4j

val jimfs = "com.google.jimfs" % "jimfs" % "1.3.1"
Expand Down
2 changes: 0 additions & 2 deletions project/Tasks.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ object Generators {
scalaVersion: String,
sbtVersion: String,
akkaVersion: String,
akkaHttpVersion: String,
dir: File
): Seq[File] = {
val file = dir / "PlayVersion.scala"
Expand All @@ -24,7 +23,6 @@ object Generators {
| val scalaVersion = "$scalaVersion"
| val sbtVersion = "$sbtVersion"
| val akkaVersion = "$akkaVersion"
| val akkaHttpVersion = "$akkaHttpVersion"
|}
|""".stripMargin

Expand Down