我有以下项目结构:
myproject
|
+- app
|
+- conf
|
+- project
| |
| +- project
| |
| +- Build.scala (etc.)
|
+- modules
|
+- security
|
+- app
|
+- conf
这是我的构建文件中的片段:
val security = PlayProject(
appName + "-security", appVersion, path = file("modules/security")
)
如果我尝试sbt publish
使用非快照版本,sbt 将退出并出现以下错误:
sbt.ResolveException: unresolved dependency: myproject-security#myproject-security_2.9.1;123
当然它在存储库中找不到依赖项。但是我怎样才能将子模块与主项目一起发布呢?
先感谢您。