[Remoterengine-commits] r94 - in pkg: . RemoteREngine/inst/java_src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Sep 7 12:44:21 CEST 2009


Author: romain
Date: 2009-09-07 12:44:21 +0200 (Mon, 07 Sep 2009)
New Revision: 94

Modified:
   pkg/README
   pkg/RemoteREngine/inst/java_src/build.xml
Log:
updated README

Modified: pkg/README
===================================================================
--- pkg/README	2009-09-06 19:22:02 UTC (rev 93)
+++ pkg/README	2009-09-07 10:44:21 UTC (rev 94)
@@ -5,7 +5,7 @@
 
 this creates a tar.gz file
 
-# R CMD INSTALL RemoteREngine_0.0-0.tar.gz
+# R CMD INSTALL --clean RemoteREngine_0.0-5.tar.gz
 
 ( this has the advantage of not adding the compiled files into the project )
 

Modified: pkg/RemoteREngine/inst/java_src/build.xml
===================================================================
--- pkg/RemoteREngine/inst/java_src/build.xml	2009-09-06 19:22:02 UTC (rev 93)
+++ pkg/RemoteREngine/inst/java_src/build.xml	2009-09-07 10:44:21 UTC (rev 94)
@@ -308,6 +308,27 @@
 	</target>
 	<!--}}}-->
 	
-	<target name="all" depends="javadoc,makejars,build-client-junit" />
+	<!--{{{ fake target to facilitate creating the project in eclipse -->
+	
+	<path id="eclipse_classpath">
+		<pathelement location="lib/REngine.jar" />
+		<pathelement location="build/common" />
+		<pathelement location="build/server" />
+		<pathelement location="build/client" />
+		<pathelement location="${JUNIT_JAR}" />
+	</path>
+	
+	<target name="eclipse">
+		<javac destdir="bin">
+			<src path="src/client" />
+			<src path="src/common" />
+			<src path="src/server" />
+			<src path="src/apt" />
+			<classpath refid="annotation_classpath" />
+		</javac>
+	</target>
+	<!--}}}-->
+	
+<target name="all" depends="javadoc,makejars,build-client-junit" />
 
 </project>



More information about the Remoterengine-commits mailing list