在build.sbt中添加”org.apache.httpcomponents” %% “httpclient” % “4.5.2”
编译的时候出现报错:
sbt.ResolveException: unresolved dependency: org.apache.httpcomponents#httpclient_2.10;4.5.2: not found
[error] (*:update) sbt.ResolveException: unresolved dependency: org.apache.httpcomponents#httpclient_2.10;4.5.2: not found
在stackoverflow找到一个解决方法
Change the first %%
to a single %
. The double character version is for fetching cross-built libraries, and yours isn’t.
去掉一个%,修改如下:
“org.apache.httpcomponents” % “httpclient” % “4.5.2”