Skip to content
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

Remove references to http2-support #439

Merged
merged 1 commit into from
Jan 4, 2025
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
1 change: 0 additions & 1 deletion .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ updates {
# 10.3.0 release for akka-http. So, we want to stick to 10.2.x for now to avoid potential license-connected problems.
{ groupId = "com.typesafe.akka", artifactId="akka-http", version = "10.2." }
{ groupId = "com.typesafe.akka", artifactId="akka-http-spray-json", version = "10.2." }
{ groupId = "com.typesafe.akka", artifactId="akka-http2-support", version = "10.2." }
# Akka changed its license from Apache 2.0 (opensource) to Business Source License 1.1 (commercial) in the
# 1.2.0 release for akka-management - related modules. So, we want to stick to 1.1.x for now to avoid
# potential license-connected problems.
Expand Down
3 changes: 0 additions & 3 deletions examples/akka-persistence-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ ThisBuild / resolvers += Resolver.ApacheMavenSnapshotsRepo

val akkaVersion = "2.6.20"
val akkaHttpVersion = "10.2.10"
val akkaHttp2SupportVersion = "10.2.10"
val akkaManagementVersion = "1.1.4"
val akkaPersistenceJdbcVersion = "5.1.0"
val akkaProjectionVersion = "1.2.5"
Expand Down Expand Up @@ -56,8 +55,6 @@ libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.5.15",
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
// 2. Using gRPC and/or protobuf
"com.typesafe.akka" %% "akka-http2-support" % akkaHttp2SupportVersion,
// 3. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % akkaVersion,
"com.typesafe.akka" %% "akka-serialization-jackson" % akkaVersion,
Expand Down
2 changes: 0 additions & 2 deletions examples/akka-persistence-app/src/main/resources/grpc.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
akka.http.server.preview.enable-http2 = on

akka-persistence-app {

grpc {
Expand Down
1 change: 0 additions & 1 deletion scripts/akka-to-pekko.sed
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ s/\<ASH\>/ASH/g

s/(val pekkoGrpcRuntimeVersion) = ".*"/\1 = "1.1.1"/
s/(val pekkoGrpcSbtPluginVersion) = ".*"/\1 = "1.1.1"/
s/(val pekkoHttp2SupportVersion) = .*/\1 = "0.0.0+4272-045c925b-SNAPSHOT"/
s/(val pekkoHttpCorsVersion) = .*/\1 = "1.1.0"/
s/(val pekkoHttpVersion) = .*/\1 = "1.1.0"/
s/(val pekkoManagementVersion) = .*/\1 = "1.1.0"/
Expand Down
Loading