gpt4 book ai didi

maven - 使用 Maven exec 插件指定 javaagent 参数

转载 作者:行者123 更新时间:2023-12-02 10:59:46 33 4
gpt4 key购买 nike

我有一个类似的问题:this previous question

我正在使用 Netbeans 将 Java 项目转换为 Maven。为了启动该程序,我们需要的命令行参数之一是 -javaagent 设置。例如

-javaagent:lib/eclipselink.jar

我正在尝试让 Ne​​tbeans 启动应用程序以供开发使用(我们将为最终部署编写自定义启动脚本)

由于我使用 Maven 来管理 Eclipselink 依赖项,因此我可能不知道 Eclipselink jar 文件的确切文件名。根据我在 pom.xml 文件中配置的版本,它可能类似于 eclipselink-2.1.1.jar。

如何配置 exec-maven-plugin 以将准确的 eclipselink 文件名传递给命令行参数?

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<executable>java</executable>
<arguments>
<argument>-Xmx1000m</argument>
<argument>-javaagent:lib/eclipselink.jar</argument> <==== HELP?
<argument>-classpath</argument>
<classpath/>
<argument>my.App</argument>
</arguments>
</configuration>
</plugin>

最佳答案

我找到了一种似乎效果很好的方法。

首先,设置 maven-dependency-plugin始终运行“属性”目标。

<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>getClasspathFilenames</id>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>

稍后,使用它设置的属性as documented here格式为:

groupId:artifactId:type:[classifier]

例如

<argument>-javaagent:${mygroup:eclipselink:jar}</argument>

关于maven - 使用 Maven exec 插件指定 javaagent 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14777909/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com