On my project, i use MVN site tool to generate the project site. Now i see an entry for a Source Repository which is off course blank. How can i configure my pom.xml for this ? Can i use maven to commit directly to git ?
On my project, i use MVN site tool to generate the project site. Now i see an entry for a Source Repository which is off course blank. How can i configure my pom.xml for this ? Can i use maven to commit directly to 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>