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