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/07 13:49:23 UTC

svn commit: r1453828 - in /stanbol/trunk/launchers/full: nbactions.xml pom.xml

Author: reto
Date: Thu Mar  7 12:49:23 2013
New Revision: 1453828

URL: http://svn.apache.org/r1453828
Log:
STANBOL-976: added encoding

Modified:
    stanbol/trunk/launchers/full/nbactions.xml
    stanbol/trunk/launchers/full/pom.xml

Modified: stanbol/trunk/launchers/full/nbactions.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/launchers/full/nbactions.xml?rev=1453828&r1=1453827&r2=1453828&view=diff
==============================================================================
--- stanbol/trunk/launchers/full/nbactions.xml (original)
+++ stanbol/trunk/launchers/full/nbactions.xml Thu Mar  7 12:49:23 2013
@@ -3,6 +3,7 @@
     <action>
         <actionName>run</actionName>
         <goals>
+            <goal>clean</goal>
             <goal>package</goal>
             <goal>antrun:run</goal>
         </goals>
@@ -10,6 +11,7 @@
     <action>
         <actionName>debug</actionName>
         <goals>
+            <goal>clean</goal>
             <goal>package</goal>
             <goal>antrun:run</goal>
         </goals>
@@ -21,6 +23,7 @@
     <action>
         <actionName>profile</actionName>
         <goals>
+            <goal>clean</goal>
             <goal>package</goal>
             <goal>antrun:run</goal>
         </goals>

Modified: stanbol/trunk/launchers/full/pom.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/launchers/full/pom.xml?rev=1453828&r1=1453827&r2=1453828&view=diff
==============================================================================
--- stanbol/trunk/launchers/full/pom.xml (original)
+++ stanbol/trunk/launchers/full/pom.xml Thu Mar  7 12:49:23 2013
@@ -140,7 +140,8 @@
         <version>1.7</version>
         <configuration>
           <target>
-            <java fork="true" jar="${project.build.directory}/${project.build.finalName}.jar">
+            <java fork="true" jar="${project.build.directory}/${project.build.finalName}.jar"
+                dir="${project.build.directory}">
               <jvmarg line="-Xmx1024m -XX:MaxPermSize=256M"/>
             </java>
           </target>