Skip to content

ComplexCollaborativeAgents/Troy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TROY

A TRainable Office secretarY design using the Soar cognitive architecture.

Install and Build

Prerequisites

Steps

  1. You must first install Soar libraries on your system.
  1. Compile Troy:
  • mvn compile
  1. Execute in the console:
  • mvn exec:java

Updating Maven Settings

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>