我正在一家私人公司GitLab repo中开发一个Java库。它是客户使用的SDK的一部分。我试图弄清楚如何将其发布到Maven Central,我被困在pom.xml中设置SCM字段。
当存储库不公开时,我应该将这些字段设置为什么?
我需要这样的东西:
<!-- Define where the source code for this project lives -->
<scm>
<connection>scm:git:https://github.com/evansiroky/maven-semantic-release-example.git</connection>
<developerConnection>scm:git:https://github.com/evansiroky/maven-semantic-release-example.git</developerConnection>
<url>https://github.com/evansiroky/maven-semantic-release-example</url>
</scm>
1条答案
按热度按时间5kgi1eie1#
SCM字段可以指向私有存储库,URL可以指向网站。
我最后做了这个: