You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gu...@apache.org on 2010/08/04 09:11:47 UTC

svn commit: r982138 - /commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml

Author: guixl
Date: Wed Aug  4 07:11:47 2010
New Revision: 982138

URL: http://svn.apache.org/viewvc?rev=982138&view=rev
Log:
improve web site guide document, add get dependency jar files content

Modified:
    commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml

Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml?rev=982138&r1=982137&r2=982138&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/guide/run-source-code.xml Wed Aug  4 07:11:47 2010
@@ -72,6 +72,29 @@ org.eclipse.xsd.sdk 2.4.0.v200806091234<
    </p>
   </section>
 
+  <section name="Get dependency java class jars">
+   <p>Before we run Visual SCXML source code, we should get dependency jar files which are required built lib for Visual SCXML first. Of courese you do not need to get them one by one, just run Ant build "getDeps.xml"
+ file in project root folder. May be you should get following log info if you finish this step (similar, not exactly the same).</p>
+ <p>
+ Buildfile: E:\GSoC\workspace\trunk_root\getDeps.xml<br />
+get-deps:<br />
+    [mkdir] Created dir: E:\GSoC\workspace\trunk_root\tmp<br />
+      [get] Getting: http://labs.renren.com/apache-mirror/xml/xalan-j/xalan-j_2_7_1-bin.zip<br />
+      [get] To: E:\GSoC\workspace\trunk_root\tmp\xalan-j_2_7_1-bin.zip<br />
+    [unzip] Expanding: E:\GSoC\workspace\trunk_root\tmp\xalan-j_2_7_1-bin.zip into E:\GSoC\workspace\trunk_root\tmp<br />
+     [copy] Copying 1 file to E:\GSoC\workspace\trunk_root\src\main\java\org.apache.commons.scxml.modeling.diagram\lib<br />
+     [copy] Copying 1 file to E:\GSoC\workspace\trunk_root\src\main\java\org.apache.commons.scxml.modeling.diagram\lib<br />
+     [copy] Copying 1 file to E:\GSoC\workspace\trunk_root\src\main\java\org.apache.commons.scxml.modeling.diagram\debug<br />
+      [get] Getting: http://labs.renren.com/apache-mirror/commons/scxml/binaries/commons-scxml-0.9-bin.zip<br />
+      [get] To: E:\GSoC\workspace\trunk_root\tmp\commons-scxml-0.9-bin.zip<br />
+    [unzip] Expanding: E:\GSoC\workspace\trunk_root\tmp\commons-scxml-0.9-bin.zip into E:\GSoC\workspace\trunk_root\tmp<br />
+     [copy] Copying 1 file to E:\GSoC\workspace\trunk_root\src\main\java\org.apache.commons.scxml.modeling.diagram\debug<br />
+   [delete] Deleting directory E:\GSoC\workspace\trunk_root\tmp<br />
+BUILD SUCCESSFUL<br />
+Total time: 5 minutes 32 seconds
+ </p>
+  </section>
+  
   <section name="Run source code">
    <p>Download source code from <a href="../source-repository.html">here</a> first, if you use SVN, you can directly check out projects into your workspace.
    Then right click the project "org.apache.commons.scxml.modeling.editor", select "Run As" -> "Eclipse Application", here we go.