JADE can be run under eclipse ‘Run’ as ‘Java Application’. Before you setup the execution environment for JADE, you should add JADE’s .jar files to your project:
- go to Project -> Properties
- move to Java Build Path
- in the “Libraries” tab, press “Add External JARs” button

- Select all the JADE’s jar files in “Orders and Export” tab
After you setup the classpath for JADE. You can create a “Run Configuration” for running JADE:
- go to Run -> Run Configurations
- move to Java Application
- in the “main” tab
- specify your project name, and
- main class is jade.Boot, and
- check the Include libraries when searching for a main class

In the Tab “argument”, program arguments is the arguments that would be used in command line, for example :
-gui jade.Boot [agent_nickname1:java_package1.agent_class1 agent_nickname2:java_package2.agent_class2 ...]
Where the agent_nickname is the nickname for your agent, java_package is the package of your agent, and agent_class is the java class name of your agent.
