You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by re...@apache.org on 2013/03/05 05:22:02 UTC

svn commit: r1452659 - /stanbol/trunk/nbactions.xml

Author: reto
Date: Tue Mar  5 04:22:02 2013
New Revision: 1452659

URL: http://svn.apache.org/r1452659
Log:
STANBOL-948: added minimal nbactions.xml

Added:
    stanbol/trunk/nbactions.xml

Added: stanbol/trunk/nbactions.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/nbactions.xml?rev=1452659&view=auto
==============================================================================
--- stanbol/trunk/nbactions.xml (added)
+++ stanbol/trunk/nbactions.xml Tue Mar  5 04:22:02 2013
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<actions>
+        <action>
+            <actionName>build</actionName>
+            <goals>
+                <goal>install</goal>
+            </goals>
+            <properties>
+                <Env.MAVEN_OPTS>-Xmx1024M -XX:MaxPermSize=128M</Env.MAVEN_OPTS>
+            </properties>
+        </action>
+        <action>
+            <actionName>rebuild</actionName>
+            <goals>
+                <goal>clean</goal>
+                <goal>install</goal>
+            </goals>
+            <properties>
+                <Env.MAVEN_OPTS>-Xmx1024M -XX:MaxPermSize=128M</Env.MAVEN_OPTS>
+            </properties>
+        </action>
+    </actions>