在我的项目中,我使用 MVN 站点工具来生成项目站点。现在我看到一个源存储库条目,它当然是空白的。我如何为此配置我的 pom.xml?我可以使用 maven 直接提交到 git 吗?
问问题
56 次
在我的项目中,我使用 MVN 站点工具来生成项目站点。现在我看到一个源存储库条目,它当然是空白的。我如何为此配置我的 pom.xml?我可以使用 maven 直接提交到 git 吗?
您应该像这样在 pom 中使用SCM 标签:
<scm>
<developerConnection>scm:git:git@github.com:khmarbaise/sapm.git</developerConnection>
<connection>scm:git:git://github.com/khmarbaise/sapm.git</connection>
<url>https://github.com/khmarbaise/sapm</url>
</scm>