|
From: <tom...@us...> - 2008-03-18 20:13:12
|
Revision: 1162
http://jason.svn.sourceforge.net/jason/?rev=1162&view=rev
Author: tomklapiscak
Date: 2008-03-18 13:12:54 -0700 (Tue, 18 Mar 2008)
Log Message:
-----------
travel_agent's c-build.xml fixed, travel_agent now performs all necessary ant tasks in the right order and ensures latest jason.jar is used. travel_agent should now run out of the box.
README updated.
Modified Paths:
--------------
trunk/applications/jasdl-owlapi/README
trunk/applications/jasdl-owlapi/examples/travel_agent/bin/c-build.xml
Modified: trunk/applications/jasdl-owlapi/README
===================================================================
--- trunk/applications/jasdl-owlapi/README 2008-03-18 03:01:18 UTC (rev 1161)
+++ trunk/applications/jasdl-owlapi/README 2008-03-18 20:12:54 UTC (rev 1162)
@@ -1,5 +1,23 @@
-JASDL: "Jason AgentSpeak-DescriptionLogic"
+JASDL: "Jason AgentSpeak-Description Logic"
Copyright (C) 2008 Thomas Klapiscak (t.g...@du...)
JASDL is distributed under the LGPL license (see COPYING and COPYING.LESSER)
-Thank you for your interest in JASDL!
+
+*** Running JASDL ***
+
+Firstly, please check you are using the latest revision of the entire Jason trunk from the SVN before use.
+
+To run a JASDL agent, its class-path must include all jars under the sub-directories:
+ * trunk/applications/jasdl-owlapi/lib
+ * trunk/applications/jmca/lib
+ * All standard Jason libraries, please ensure that these are built from the latest revision of the Jason trunk.
+
+The (unmodified) travel_agent example (trunk/applications/jasdl-owlapi/examples/travel_agent/config.mas2j)
+must be run in-situ within the Jason trunk. All necessary ant tasks will be performed by its custom build script.
+
+*** Configuring JASDL ***
+
+Please refer to /trunk/jason/applications/jasdl-owlapi/examples/travel_agent/config.mas2j for an example of how to configure JASDL agents.
+
+
+Thank you for your interest in JASDL!
\ No newline at end of file
Modified: trunk/applications/jasdl-owlapi/examples/travel_agent/bin/c-build.xml
===================================================================
--- trunk/applications/jasdl-owlapi/examples/travel_agent/bin/c-build.xml 2008-03-18 03:01:18 UTC (rev 1161)
+++ trunk/applications/jasdl-owlapi/examples/travel_agent/bin/c-build.xml 2008-03-18 20:12:54 UTC (rev 1162)
@@ -1,12 +1,16 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<project name ="custombuild" basedir="..">
+ <property name="jasonJar" value="../../../../lib/jason.jar"/>
+
<import file="build.xml"/>
- <target name="user-init">
+
+ <target name="user-init">
+ <ant dir="../../../../" inheritAll="false" target="plugin"/>
+ <ant dir="../../../jmca" inheritAll="false"/>
<ant dir="../.." inheritAll="false"/>
- <ant dir="../../../jmca" inheritAll="false"/>
</target>
+
<target name="user-end">
- <echo message="JASDL end"/>
</target>
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|