如何在maven项目中设置作者姓名?

发布于 2024-09-04 16:58:31 字数 100 浏览 7 评论 0原文

打包后的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧伤还要旧人安 2024-09-11 16:58:31

这可以通过添加 manifestEntries 部分在 pom.xml 中覆盖,例如:

<project ...>
...
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.0.0</version>
        <configuration>
          <archive>
            <index>true</index>
            <manifest>
              <addClasspath>true</addClasspath>
            </manifest>
            <manifestEntries>
              <Built-By>${user.name}</Built-By>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

This can be overwritten in your pom.xml by adding a manifestEntries section e.g.:

<project ...>
...
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.0.0</version>
        <configuration>
          <archive>
            <index>true</index>
            <manifest>
              <addClasspath>true</addClasspath>
            </manifest>
            <manifestEntries>
              <Built-By>${user.name}</Built-By>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
烟─花易冷 2024-09-11 16:58:31

从命令行调用时,以下操作将起作用:

mvn -Duser.name=<username> clean install

在 NetBeans 7.4 中,您可以通过以下方式全局设置用户名:
工具->选项-> Java-> Maven,选择左侧的“执行”类别并设置

全局执行选项:

-Duser.name=<username>

或者可以通过在项目特定的构建操作设置中设置相应的属性来完成(项目属性 -> 操作 -> 例如构建项目)。

When invoked from command line, the following will work:

mvn -Duser.name=<username> clean install

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:

-Duser.name=<username>

Alternatively it can be done by setting according property in project-specific build action settings (Project Properties -> Actions -> e.g. Build project).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文