From: <lor...@us...> - 2013-06-12 09:13:46
|
Revision: 3992 http://sourceforge.net/p/dl-learner/code/3992 Author: lorenz_b Date: 2013-06-12 09:13:43 +0000 (Wed, 12 Jun 2013) Log Message: ----------- Added Maven exec plugin. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2013-06-12 09:00:36 UTC (rev 3991) +++ trunk/interfaces/pom.xml 2013-06-12 09:13:43 UTC (rev 3992) @@ -447,8 +447,26 @@ </excludes> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2</version> + <executions> + <execution> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>java</executable> + <arguments> + <argument>-Xms512m</argument> + <argument>-Xmx4000m</argument> + </arguments> + </configuration> + </plugin> - </plugins> </build> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |