我正在尝试将 mvn 发布插件与我的 github 项目 https://github.com/inder123/playn-ext
Java 项目位于 playn-ext 的子目录中,在 playn-headless-android 下。要使用 mvn release 插件,我需要设置 pom 的 scm 部分。这是我最初写的:
<scm>
<connection>scm:git:git@github.com:inder123/playn-ext.git</connection>
<url>scm:git:git@github.com:inder123/playn-ext.git</url>
<developerConnection>scm:git:git@github.com:inder123/playn-ext.git</developerConnection>
</scm>
但是,mvn 发布(从 playn-headless-android 运行时)失败,因为项目 pom 在顶层不可用。
如何配置 scm 部分?谢谢您的帮助。