aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-08-31 10:33:27 +0200
committeradamw <adam@warski.org>2017-08-31 10:33:27 +0200
commit1fab77128b7ebd8a7f14d8e02c801b1fb6e28046 (patch)
tree196603a7118016d742712cdd98f6c3f26cc5dccd
parent4d4faaf068744e04b372fdee081b75083b9a935a (diff)
downloadsttp-1fab77128b7ebd8a7f14d8e02c801b1fb6e28046.tar.gz
sttp-1fab77128b7ebd8a7f14d8e02c801b1fb6e28046.tar.bz2
sttp-1fab77128b7ebd8a7f14d8e02c801b1fb6e28046.zip
Change module names
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index cfd4389..6cf15d9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -135,7 +135,7 @@ lazy val asyncHttpClientFs2Handler: Project = (project in file(
lazy val okhttpHandler: Project = (project in file("okhttp-handler"))
.settings(commonSettings: _*)
.settings(
- name := "okhttp-client-handler",
+ name := "okhttp-handler",
libraryDependencies ++= Seq(
"com.squareup.okhttp3" % "okhttp" % "3.8.1"
)
@@ -144,7 +144,7 @@ lazy val okhttpHandler: Project = (project in file("okhttp-handler"))
lazy val okhttpMonixHandler: Project = (project in file("okhttp-handler/monix"))
.settings(commonSettings: _*)
.settings(
- name := "okhttp-client-handler-monix",
+ name := "okhttp-handler-monix",
libraryDependencies ++= Seq(monix)
) dependsOn okhttpHandler