我知道如何在 Maven 中进行 Clover(在本地 Eclipse 或 Jenkins 中),问题是要求每个人都将 clover 许可证放在同一目录中并不是一个好主意。有什么建议吗?
<properties>
<clover.version>3.1.8</clover.version>
<clover.license>C:\xxx\clover_license</clover.license>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>${clover.version}</version>
<configuration>
<license>${clover.license}</license>
</configuration>
</plugin>
</plugins>
</build>
我认为使用 Maven 参数来传递变量是可能的,但我需要在 Jenkins 的每个项目中设置它。如果我更改 Jenkins 服务器中的文件,我需要修改每个项目。
-Dclover.license=C:\xxx\clover_license