Disable security manager when running with `mvn exec:exec`

This commit is contained in:
Lee Hinman 2015-04-24 11:00:54 -06:00
parent 4d672b0369
commit 54cf885d14
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,6 @@
<version>1.4.0</version> <version>1.4.0</version>
<executions> <executions>
<execution> <execution>
<phase>exec</phase>
<goals> <goals>
<goal>exec</goal> <goal>exec</goal>
</goals> </goals>
@ -447,6 +446,7 @@
<configuration> <configuration>
<executable>${jvm.executable}</executable> <executable>${jvm.executable}</executable>
<arguments> <arguments>
<argument>-Des.security.manager.enabled=false</argument>
<argument>-classpath</argument> <argument>-classpath</argument>
<classpath/> <classpath/>
<argument>org.elasticsearch.bootstrap.Bootstrap</argument> <argument>org.elasticsearch.bootstrap.Bootstrap</argument>