typelevel / doobie

Functional JDBC layer for Scala.
MIT License
2.17k stars 357 forks source link

compile failed #984

Open zhuqingchao opened 5 years ago

zhuqingchao commented 5 years ago

I just want to compile doobie locally and its report an error:

[error] sbt.librarymanagement.ResolveException: unresolved dependency: org.tpolecat#tut-core_2.12;0.6.10: not found
[error]     at sbt.internal.librarymanagement.IvyActions$.resolveAndRetrieve(IvyActions.scala:332)
……

what should I do? Here are my operations

$ git clone   (branch: series/0.8.x)
$ sbt compile

then error

(docs / update) sbt.librarymanagement.ResolveException: unresolved dependency: org.tpolecat#tut-core_2.12;0.6.10: not found
tpolecat commented 5 years ago

Hi, are you behind a firewall? That artifact comes from Bintray. The resolver is added by the plugin.

zhuqingchao commented 5 years ago

I don't know what's the problem. I found this in maven MavenRepository

<!-- https://mvnrepository.com/artifact/org.tpolecat/tut-core -->
<dependency>
    <groupId>org.tpolecat</groupId>
    <artifactId>tut-core_2.12</artifactId>
    <version>0.6.10</version>
    <scope>test</scope>
</dependency>
// https://mvnrepository.com/artifact/org.tpolecat/tut-core
libraryDependencies += "org.tpolecat" %% "tut-core" % "0.6.10" % Test

But I got the error when I run 'sbt compile'. And not found only this one till now.