您好我有5个jar文件并尝试使用sbt将它们发布到本地存储库。
但是当我将它们放在像lib/
这样的unmanagedBase目录中时,它们不会被publishLocal
复制。有没有一种简单的方法可以将它们包含在发布过程中?
目前maven在这里有一个类似的解决方案: http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
答案 0 :(得分:4)
一个选项是为要发布的每个jar定义一个子项目。你的主要项目取决于每个。为每个子项目提供适当的name
,version
和organization
。对于每个子项目,将其jar放在某个不在类路径上的地方,并使packageBin
的输出成为该jar。
例如(sbt 0.13 build.sbt),
lazy val main = project.dependsOn(subA)
lazy val subA = project.settings(
name := "third-party",
organization := "org.example",
version := "1.4",
packageBin in Compile := baseDirectory.value / "bin" / "third-party.jar",
// if there aren't doc/src jars use the following to
// avoid publishing empty jars locally
// otherwise, define packageDoc/packageSrc like packageBin
publishArtifact in packageDoc := false,
publishArtifact in packageSrc := false,
// tell sbt to put the jar on main's classpath
// and not the (empty) class directory
exportJars := true,
// set this to not add _<scalaBinaryVersion> to the name
crossPaths := true
)
此方法允许您更改subA/bin/third-party.jar
中的jar并立即使用它,后续publishLocal
将在本地发布。
如果您希望在本地单独发布,以便它不是项目的一部分,请将subA
定义为独立项目。