我正在为NetLogo(repo)开发Scala扩展。我同时关注扩展API example和NetLogos Sample-Scala-Extension

我看到了:

[info] Done packaging.
To compare two paths outside a working tree:
usage: git diff [--no-index] <path> <path>
[warn] working tree not clean when packaging; target not created
[success] Total time: 6 s, completed Jan 29, 2019, 6:22:00 PM


生成的.jar不包含我对该扩展名所做的修改。我认为这与“ [警告]工作树不干净...”有关。

是这样吗
解决办法是什么?

文件层次结构:

Scala-Plume-Model
  build.sbt
  src
    PlumeModelExtension.scala




build.sbt

enablePlugins(org.nlogo.build.NetLogoExtension)

name := "plume-scala"
version := "0.1"
scalaVersion := "2.12.0"

netLogoExtName      := "plume-scala"
netLogoClassManager := "PlumeModelExtension"
netLogoZipSources   := false

scalaSource in Compile := baseDirectory.value / "src"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xfatal-warnings", "-encoding", "us-ascii")
netLogoVersion := "6.0.4"

最佳答案

简短的答案:将isSnapshot := true添加到您的build.sbt中,然后package sbt任务应开始创建输出jar和zip文件,而不管git的当前状态如何。

更长的答案:NetLogo Extension SBT插件对何时进行打包有一些期望。如果isSnapshotfalse或未设置,则插件会假定您正在尝试进行“正式版”发布。但是对于生产版本,您可能不希望从脏存储库进行编译和打包。因此它会警告您并且不会创建工件。

正常的工作流程是在开发过程中保持isSnapshot := true,然后在完成所有提交并准备发布时,添加一个设置isSnapshot := false的提交(可能与扩展的版本冲突一起添加)。 ),打包并标记发布,然后立即添加提交设置isSnapshot := true

07-25 22:42