A TRainable Office secretarY design using the Soar cognitive architecture.
- Java 1.8
- MVN
- Your Maven
settings.xml
file must include an entry for the CHAT repository (see below)
- Your Maven
- Soar - https://github.com/SoarGroup/Soar/
- You must first install Soar libraries on your system.
- Soar requires SWIG to build the libraries from source. Make sure SWIG is installed on your system.
- Download Soar source code from
- Build the Soar code by executing
python scons/scons.py all
from the top-level Soar directory. All of the compiled files should be in theout
subdirectory. - The following Soar files must be in the library search path used by Java on your system:
- libSoar.dylib
- libJava_sml_ClientInterface.jnilib
- settings.soar
- (the
java
subdirectory) The files should be in the library search path Java uses on your system. On Mac machines you can place them in~/Library/Java/Extensions
.
- Compile Troy:
- mvn compile
- Execute in the console:
- mvn exec:java
Maven uses a settigs.xml
for global configuration parameters. The file is
located in your Maven directory (e.g. ~/.m2/settings.xml). If you already
have a settings.xml
file include the following in it:
<server>
<id>chat-maven-repo-s3</id>
<username>username</username>
<password>password</password>
</server>
You can get the correct values for the username and password from the CHAT
private Confluence site. If you need a complete settings.xml
file, it
should look like this:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>chat-maven-repo-s3</id>
<username>username</username>
<password>password</password>
</server>
</servers>
</settings>