gpt4 book ai didi

mongodb - 无法将 casbah 解析为 sbt 依赖项

转载 作者:可可西里 更新时间:2023-11-01 09:57:05 24 4
gpt4 key购买 nike

编译时出现以下错误:

[error] (*:update) sbt.ResolveException: unresolved dependency: org.mongodb#casbah_2.11;2.7.4-SNAPSHOT: not found

使用这个 build.sbt 文件:

name := """play-scala"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayScala)

scalaVersion := "2.11.1"

libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws
)

libraryDependencies += "org.mongodb" %% "casbah" % "2.7.4-SNAPSHOT"

// For stable releases
resolvers += "Sonatype releases" at "https://oss.sonatype.org/content/repositories/releases"

// For SNAPSHOT releases
resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

我正在使用 Typesafe Activator 并尝试了许多 Casbah 版本(包括发布,而不是快照)和解析器的组合。 installation instructions from the "official" MongoDB Casbah tutorial也不工作。有什么想法吗?

最佳答案

如果您转到发布和快照 URL 并尝试手动定位 casbah,您会看到 snapshot url doesn't have anything for casbah现在。

另一方面,release repo 有 Scala 2.11 的 2.7.3。 Check it out here .

也许试试

libraryDependencies += "org.mongodb" %% "casbah" % "2.7.3"

关于mongodb - 无法将 casbah 解析为 sbt 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24897199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com