Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
build: Use a transitive dependency for Akka HTTP (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren authored Nov 1, 2023
1 parent 3f053ad commit 8747681
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions src/main/g8/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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$'
Expand Down
2 changes: 0 additions & 2 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/main/g8/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions src/main/g8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<akka.version>$akka_version$</akka.version>
<akka.http.version>$akka_http_version$</akka.http.version>
<akka.grpc.version>$akka_grpc_version$</akka.grpc.version>
<scala.binary.version>$scala_major_version$</scala.binary.version>
<grpc.version>1.58.0</grpc.version>
Expand All @@ -35,12 +34,6 @@
</pluginRepositories>

<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-http_\${scala.binary.version}</artifactId>
<version>\${akka.http.version}</version>
</dependency>


<dependency>
<groupId>com.typesafe.akka</groupId>
Expand Down

0 comments on commit 8747681

Please sign in to comment.