Author: veithen
Date: Sun Dec 24 10:34:18 2017
New Revision: 1819212

URL: http://svn.apache.org/viewvc?rev=1819212&view=rev
Log:
Fix a problem with gmavenplus-plugin in multithreaded builds.

Modified:
    axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/pom.xml?rev=1819212&r1=1819211&r2=1819212&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/pom.xml (original)
+++ axis/axis2/java/core/trunk/pom.xml Sun Dec 24 10:34:18 2017
@@ -1153,6 +1153,11 @@
                     <groupId>org.codehaus.gmavenplus</groupId>
                     <artifactId>gmavenplus-plugin</artifactId>
                     <version>1.5</version>
+                    <configuration>
+                        <!-- We don't actually want to allow System.exit, but 
the security manager
+                             installed by the plugin causes problems in 
multithreaded builds. -->
+                        <allowSystemExits>true</allowSystemExits>
+                    </configuration>
                     <dependencies>
                         <dependency>
                             <groupId>org.codehaus.groovy</groupId>


Reply via email to