有没有人有关于如何为perforce配置Maven SCM标记的示例?
答案 0 :(得分:2)
我刚发现这有答案。
<scm>
<connection>scm:perforce://depot/simple</connection>
<developerConnection>scm:perforce://depot/simple</developerConnection>
<url>scm:perforce://depot/simple</url>
</scm>
我也试图在发布插件中使用它,因为我的perforce需要一个用户ID,我可以在发布插件的配置部分指定
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<username>myUser</username>
</configuration>
</plugin>