如何在maven项目中设置作者姓名?
打包后的maven项目包含META-INF/manifest.mf文件,“Built-by”字段中是当前用户的登录名。 在哪里或什么设置作者姓名,以便 Maven 将使用它而不是登录名?
packaged maven project contains META-INF/manifest.mf file and in field "Built-by" is login name of current user.
Where or what to set name of author, so maven will use this instead of login name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过添加
manifestEntries
部分在 pom.xml 中覆盖,例如:This can be overwritten in your pom.xml by adding a
manifestEntries
section e.g.:从命令行调用时,以下操作将起作用:
在 NetBeans 7.4 中,您可以通过以下方式全局设置用户名:
工具->选项-> Java-> Maven,选择左侧的“执行”类别并设置
全局执行选项:
或者可以通过在项目特定的构建操作设置中设置相应的属性来完成(项目属性 -> 操作 -> 例如构建项目)。
When invoked from command line, the following will work:
In NetBeans 7.4 you can set up the user name globally in the following way:
Tools -> Options -> Java -> Maven, Selecting "Execution" category on the left and setting
Global Execution Options:
Alternatively it can be done by setting according property in project-specific build action settings (Project Properties -> Actions -> e.g. Build project).