Skip to content

Commit 733430c

Browse files
authored
Merge pull request #145 from averzicco/asynchttpclient
Switch http client from apache-http to asynchttpclient
2 parents 231e696 + 3879339 commit 733430c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

sbt-plugin/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ val `sbt-github-dependency-submission` = project
4141
"-Ywarn-unused-import"
4242
),
4343
libraryDependencies ++= Seq(
44-
"com.eed3si9n" %% "gigahorse-apache-http" % "0.7.0",
44+
"com.eed3si9n" %% "gigahorse-asynchttpclient" % "0.7.0",
4545
"org.scalameta" %% "munit" % "0.7.29" % Test
4646
),
4747
buildInfoKeys := Seq[BuildInfoKey](name, version, homepage),

sbt-plugin/src/main/scala/ch/epfl/scala/SubmitDependencyGraph.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ import ch.epfl.scala.githubapi.JsonProtocol._
1515
import ch.epfl.scala.githubapi._
1616
import gigahorse.FullResponse
1717
import gigahorse.HttpClient
18-
import gigahorse.support.apachehttp.Gigahorse
18+
19+
import gigahorse.support.asynchttpclient.Gigahorse
1920
import sbt._
2021
import sbt.internal.util.complete._
2122
import sjsonnew.shaded.scalajson.ast.unsafe.JValue

0 commit comments

Comments
 (0)