当我将非Maven的库jar文件部署到存储库时,我可以使用generatePom
开关:
mvn deploy:deploy-file
-Durl=<pathToRepo>
-Dfile=<jarFile>
-DgroupId=<groupId>
-DartifactId=<artifactId>
-Dpackaging=jar
-Dversion=<version>
-DgeneratePom=true
附加开关DgeneratePom.description=Hello!
在存储库中生成的pom.xml文件中生成<description>Hello!</description>
。
还有开关吗?我真正喜欢的是一个产生许可证块的论据:
<licenses>
<license>
<name>...</name>
<distribution>...</distribution>
<url>...</url>
<comments>...</comments>
</license>
</licenses>
有没有?