铣削:如何向模块添加其他资源



我的模块旁边有一些文件,我需要在我的类路径上进行测试。

列出所有可能性(mill resolve tests._(我认为扩展resources是要走的路。

我尝试了很多 - 这是我的最后一次尝试:

object test extends Tests {
override def resources =
new Sources({
super.resources.self.map(_ :+ (millSourcePath / up / 'data / 'global / 'bpmn))
}, 
super.resources.ctx
)
...
}
  • 覆盖resources是要走的路吗?
  • 如何正确完成?

>resources是此处定义的"源任务"。因此,为了向资源路径添加一些东西,您可以执行

override def resources = T.sources {
super.resources() :+ PathRef(millSourcePath / up / 'data / 'global / 'bpm)
}

相关内容

  • 没有找到相关文章

最新更新