|
From: <jom...@us...> - 2009-04-28 19:24:47
|
Revision: 1492
http://jason.svn.sourceforge.net/jason/?rev=1492&view=rev
Author: jomifred
Date: 2009-04-28 19:24:45 +0000 (Tue, 28 Apr 2009)
Log Message:
-----------
improve the Ant script generate for Saci
Modified Paths:
--------------
trunk/applications/jason-eclipse-plugin/README-jason-eclipse-plugin.txt
trunk/src/jason/infra/saci/SaciMASLauncherAnt.java
Modified: trunk/applications/jason-eclipse-plugin/README-jason-eclipse-plugin.txt
===================================================================
--- trunk/applications/jason-eclipse-plugin/README-jason-eclipse-plugin.txt 2009-04-25 21:04:36 UTC (rev 1491)
+++ trunk/applications/jason-eclipse-plugin/README-jason-eclipse-plugin.txt 2009-04-28 19:24:45 UTC (rev 1492)
@@ -1,7 +1,7 @@
Jason Plugin for Eclipse
Requirements
-. Jason >= 1.0.1
+. Jason >= 1.3
. Eclipse >= 3.2
More information at http://jasonplugin.wikidot.com
Modified: trunk/src/jason/infra/saci/SaciMASLauncherAnt.java
===================================================================
--- trunk/src/jason/infra/saci/SaciMASLauncherAnt.java 2009-04-25 21:04:36 UTC (rev 1491)
+++ trunk/src/jason/infra/saci/SaciMASLauncherAnt.java 2009-04-28 19:24:45 UTC (rev 1492)
@@ -89,7 +89,8 @@
// write start saci script
String startsaci =
- " <property name=\"saci.main\" value=\"saci.tools.SaciMenu\"/> <!-- use \"saci.launcher.LauncherD\" to run saci without a GUI -->\n\n"
+ " <property name=\"saci.main\" value=\"saci.tools.SaciMenu\"/> <!-- use \"saci.launcher.LauncherD\" to run saci without a GUI -->\n"
+ + " <property name=\"saci.remote.host\" value=\"localhost\"/>\n\n"
+ " <target name=\"saci\">\n"
+ " <java classname=\"${saci.main}\" failonerror=\"true\" fork=\"yes\" dir=\"${basedir}\">\n"
+ " <classpath refid=\"project.classpath\"/>\n"
@@ -102,10 +103,10 @@
+ " </java>\n"
+ " </target>\n"
+ " <target name=\"saci-client\" >\n"
- + " <java classname=\"${saci.main}\" failonerror=\"true\" fork=\"yes\" dir=\"${basedir}\">\n"
+ + " <java classname=\"saci.launcher.LauncherD\" failonerror=\"true\" fork=\"yes\" dir=\"${basedir}\">\n"
+ " <classpath refid=\"project.classpath\"/>\n"
+ " <jvmarg value=\"-Djava.security.policy=jar:file:" + Config.get().getSaciJar()+ "!/policy\"/>\n"
- + " <arg line=\"-connect localhost\"/> <!-- replace localhost by the host you are using as master host -->\n"
+ + " <arg line=\"-connect ${saci.remote.host}\"/>\n"
+ " </java>\n"
+ " </target>\n";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|