cloudsurfin
cloudsurfin

Reputation: 2577

How do you set a java.security.policy in Maven pom.xml (coming from Ant)?

In Maven, where would I set the security policy as shown in this Ant build.xml...

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

...if my pom.xml includes this profile:

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

Upvotes: 3

Views: 2680

Answers (1)

kostya
kostya

Reputation: 9559

Documentation for exec-maven-plugin has an example:

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

Upvotes: 3

Related Questions