gpt4 book ai didi

java - 您如何在 Maven pom.xml(来自 Ant)中设置 java.security.policy?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:43:32 26 4
gpt4 key购买 nike

在 Maven 中,我应该在哪里设置安全策略,如 Ant build.xml 中所示...

<target name="runComputer" description="Run a computer">
<java classname="system.Computer" fork="true">
<jvmarg value="-Djava.security.policy=policy"/>
</java>
</target>

...如果我的 pom.xml 包含此配置文件:

<profile>
<id>manager</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>


<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>system.Computer</mainClass>
<commandlineArgs>"hello"</commandlineArgs>
</configuration>
</plugin>
</plugins>
</build>
</profile>

最佳答案

exec-maven-plugin 的文档有一个例子:

<configuration>
<mainClass>com.example.Main</mainClass>
<arguments>
<systemProperties>
<systemProperty>
<key>java.security.policy</key>
<value>policy</value>
</systemProperty>
</systemProperties>
</arguments>
</configuration>

关于java - 您如何在 Maven pom.xml(来自 Ant)中设置 java.security.policy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30429713/

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