【问题标题】:How do you set a java.security.policy in Maven pom.xml (coming from Ant)?如何在 Maven pom.xml(来自 Ant)中设置 java.security.policy?
【发布时间】:2015-05-25 00:16:07
【问题描述】:

在 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>

【问题讨论】:

    标签: java maven ant pom.xml


    【解决方案1】:

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

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

    【讨论】:

    • 很酷。只需确保将 放在 之上。谢谢。
    猜你喜欢
    • 2013-01-17
    • 1970-01-01
    • 1970-01-01
    • 2021-06-19
    • 2014-07-09
    • 2011-03-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多