我刚开始尝试使用scala和sbt设置工作流程,而且我的存储库出现问题。我正在尝试发布一个简单的测试库,它由两个项目组成,并从另一个程序中使用它。
我的源代码库的构建包含以下内容:
val sharedSettings = Seq(
name := "test-lib",
organization := "com.example",
version := "0.1-SNAPSHOT",
scalaVersion := "2.11.0",
publishTo := Some("Artifactory Realm" at "http://localhost:8081/artifactory/libs-snapshot-local"),
publishMavenStyle := true,
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
)
lazy val root = project.in(file(".")).settings(sharedSettings: _*).aggregate(child1, child2)
lazy val sharedCode = project.settings(sharedSettings: _*)
val child1Settings = sharedSettings ++ Seq(unmanagedSourceDirectories in Compile <++= (unmanagedSourceDirectories in sharedCode) in Compile)
val child2Settings = sharedSettings ++ Seq(unmanagedSourceDirectories in Compile <++= (unmanagedSourceDirectories in sharedCode) in Compile)
lazy val child1 = project.settings(child1Settings: _*)
lazy val child2 = project.settings(child2Settings: _*)
我可以运行sbt publish okay,并在repo中创建目录com/example/test-lib/XXX
。
在我的测试程序中,我有以下内容:
scalaVersion := "2.11.0",
resolvers += "Artifactory Realm" at "http://localhost:8081/artifactory/libs-snapshot-local",
libraryDependencies += "com.example" %% "test-lib" % "0.1-SNAPSHOT"
当测试程序尝试编译时,由于以下原因,它无法解析com.example
:
[warn] ==== Artifactory Realm: tried
[warn] http://localhost:8081/artifactory/libs-snapshot-local/com/example/test-lib_2.11/0.1-SNAPSHOT/test-lib_2.11-0.1-SNAPSHOT.pom
查看存储库目录本身,我在我的pom文件上获得了一个额外的时间戳:
test-lib_2.11-0.1-20140510.183027-1.pom 10-May-2014 19:30 793 bytes
test-lib_2.11-0.1-20140510.183027-2.pom 10-May-2014 19:30 793 bytes
...
test-lib_2.11-0.1-20140510.183121-9.pom 10-May-2014 19:31 793 bytes
目录中的maven-metadata.xml引用这些正常,sbt直接查找没有时间戳的pom文件,但无法找到它。 pom文件包含正确的信息。
我做错了什么?
答案 0 :(得分:5)
问题不在于我的sbt配置,而在于我的存储库服务器。
我正在使用Artifactory,并且快照存储库配置为默认使用“唯一快照”。这些快照的文件名在发布时进行了修改,以包含时间戳,sbt 13.x似乎无法理解。
将存储库的“Maven Snapshot Version Behavior”从“Unique”更改为“Nonunique”后,一切都开始有效。
答案 1 :(得分:1)
实际上,sbt publish
生成的maven-metadata.xml和jar / pom文件中的时间戳和内部版本号后缀不一致导致这种错误。
在部署过程中使用以下插件sbt-maven-resolver,后缀将保持不变,如下所示: same suffix
当前,在部署端添加此插件(一旦时间戳和构建后缀相同,则sbt / maven都可以找到快照):
在plugins.sbt
addSbtPlugin("org.scala-sbt" % "sbt-maven-resolver" % "0.1.0")
希望能解决您的情况。