gpt4 book ai didi

java - 调用 exec :java plugin in maven? 时如何传递 systemProperties

转载 作者:IT老高 更新时间:2023-10-28 20:57:33 24 4
gpt4 key购买 nike

我想使用 exec:java 插件从命令行调用主类。我可以使用 -Dexec.args="arg0 arg1 arg2" 从命令行传递参数,但我不知道如何传递系统属性。我试过 '-Dexec.systemProperties="key=value"` 但没有效果。

pom.xml 看起来像这样:

  <plugin>  
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>ibis.structure.Structure</mainClass>
</configuration>
</plugin>

最佳答案

尝试关注我,它可以正常工作

        <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>ibis.structure.Structure</mainClass>
<systemProperties>
<systemProperty>
<key>someKey</key>
<value>someValue</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>

关于java - 调用 exec :java plugin in maven? 时如何传递 systemProperties,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3708846/

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