From 87476813fe47afa99f977e3b40801a2ebde97050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Wed, 1 Nov 2023 11:38:28 +0100 Subject: [PATCH] build: Use a transitive dependency for Akka HTTP (#65) --- src/main/g8/build.gradle | 2 -- src/main/g8/build.sbt | 2 -- src/main/g8/default.properties | 1 - src/main/g8/pom.xml | 7 ------- 4 files changed, 12 deletions(-) diff --git a/src/main/g8/build.gradle b/src/main/g8/build.gradle index 7de4f20..1cab1e1 100644 --- a/src/main/g8/build.gradle +++ b/src/main/g8/build.gradle @@ -26,8 +26,6 @@ dependencies { implementation 'com.typesafe.akka:akka-stream_2.13:$akka_version$' implementation 'com.typesafe.akka:akka-pki_2.13:$akka_version$' - implementation 'com.typesafe.akka:akka-http_2.13:$akka_http_version$' - implementation 'ch.qos.logback:logback-classic:1.2.3' testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:$akka_version$' diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt index 65f0c88..6d047ef 100644 --- a/src/main/g8/build.sbt +++ b/src/main/g8/build.sbt @@ -3,7 +3,6 @@ version := "1.0" scalaVersion := "$scala_version$" val akkaVersion = "$akka_version$" -val akkaHttpVersion = "$akka_http_version$" lazy val akkaGrpcVersion = "$akka_grpc_version$" enablePlugins(AkkaGrpcPlugin) @@ -19,7 +18,6 @@ fork := true resolvers += "Akka library repository".at("https://repo.akka.io/maven") libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-http" % akkaHttpVersion, "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion, "com.typesafe.akka" %% "akka-discovery" % akkaVersion, "com.typesafe.akka" %% "akka-stream" % akkaVersion, diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties index 9c64370..d2e71ae 100644 --- a/src/main/g8/default.properties +++ b/src/main/g8/default.properties @@ -2,7 +2,6 @@ name=akka-grpc-quickstart-java description = Akka gRPC is a toolkit for building streaming gRPC servers and clients on top of Akka Streams. This simple application will get you started building gRPC based systems with Java. akka_grpc_version=2.4.0 akka_version=2.9.0 -akka_http_version=10.6.0 sbt_version=maven(org.scala-sbt, sbt, stable) scala_major_version=2.13 scala_version=2.13.12 diff --git a/src/main/g8/pom.xml b/src/main/g8/pom.xml index 3426857..b0de891 100644 --- a/src/main/g8/pom.xml +++ b/src/main/g8/pom.xml @@ -12,7 +12,6 @@ 17 17 $akka_version$ - $akka_http_version$ $akka_grpc_version$ $scala_major_version$ 1.58.0 @@ -35,12 +34,6 @@ - - com.typesafe.akka - akka-http_\${scala.binary.version} - \${akka.http.version} - - com.typesafe.akka