|
From: <mrp...@us...> - 2014-05-05 16:24:44
|
Revision: 8198
http://sourceforge.net/p/bigdata/code/8198
Author: mrpersonick
Date: 2014-05-05 16:24:41 +0000 (Mon, 05 May 2014)
Log Message:
-----------
Ticket #907: bigdata quick start.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-05 15:38:22 UTC (rev 8197)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-05 16:24:41 UTC (rev 8198)
@@ -2464,6 +2464,17 @@
</java>
</target>
+ <target name="start" depends="compile" description="Start the Bigdata Server.">
+ <java classname="com.bigdata.rdf.sail.webapp.NanoSparqlServer" failonerror="true" fork="true" logerror="true">
+ <classpath refid="runtime.classpath" />
+ <jvmarg value="-server"/>
+ <jvmarg value="-Xmx1G"/>
+ <jvmarg value="-Dlog4j.configuration=bigdata-war/src/WEB-INF/classes/log4j.properties"/>
+ <arg value="9999"/>
+ <arg value="kb"/>
+ <arg value="bigdata-war/src/WEB-INF/RWStore.properties"/>
+ </java>
+ </target>
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|