0

在我的项目中,我使用 MVN 站点工具来生成项目站点。现在我看到一个源存储库条目,它当然是空白的。我如何为此配置我的 pom.xml?我可以使用 maven 直接提交到 git 吗?

4

1 回答 1

3

您应该像这样在 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>
于 2013-03-22T10:26:27.807 回答