新的sbt应用程序使用akkahttp模板,如何确定解析器并添加maven-central



我有一个新的sbt应用程序,它是使用akka-http-g8模板构建的。

我正试图将reactivemongo 1.0添加到我的构建中,但我收到了以下错误:

not found: https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo_2.13/1.0/reactivemongo_2.13-1.0.pom

文件上说这个图书馆在马文中心。

我如何确定我的项目当前默认在sbt中使用哪个解析器?

这个库可能不是为scala 2.13.3或2.13.1构建的吗?

如何调试这种类型的错误。

谢谢!

build.sbt:

import Dependencies._
lazy val akkaHttpVersion = "10.2.1"
lazy val akkaVersion     = "2.6.10"
lazy val root = (project in file("."))
.settings(
inThisBuild(
List(
organization := "com.example",
scalaVersion := "2.13.3"
)
),
name := "akka-http",
libraryDependencies ++= Seq(
"com.typesafe.akka"        %% "akka-http"                % akkaHttpVersion,
"com.typesafe.akka"        %% "akka-http-spray-json"     % akkaHttpVersion,
"com.typesafe.akka"        %% "akka-actor-typed"         % akkaVersion,
"com.typesafe.akka"        %% "akka-stream"              % akkaVersion,
"ch.qos.logback"           % "logback-classic"           % "1.2.3",
"com.softwaremill.macwire" %% "macros"                   % "2.3.3" % "provided",
"com.softwaremill.macwire" %% "util"                     % "2.3.3" % "provided",
"com.github.blemale"       %% "scaffeine"                % "3.1.0" % "compile",
"org.typelevel"            %% "cats-core"                % "2.1.1",
"com.lihaoyi"              %% "scalatags"                % "0.8.2",
"com.github.pureconfig"    %% "pureconfig"               % "0.13.0",
"org.reactivemongo"        %% "reactivemongo"            % "1.0",
"com.typesafe.akka"        %% "akka-http-testkit"        % akkaHttpVersion % Test,
"com.typesafe.akka"        %% "akka-actor-testkit-typed" % akkaVersion % Test,
"org.scalatest"            %% "scalatest"                % "3.0.8" % Test
)
)
.enablePlugins(JavaAppPackaging)

您能尝试用"org.reactivemongo" %% "reactivemongo" % "1.0.0" % "provided"替换"org.reactivemongo" %% "reactivemongo" % "1.0"吗?

我从Maven Repository复制https://mvnrepository.com/artifact/org.reactivemongo/reactivemongo_2.13/1.0.0

最新更新