Include external libraries in my plugin
From AIBenchWiki
This is a very common task, since AIBench is used many times as an integration framework of other tools. If you want to use external libraries in your plugin, you only need to copy the JAR file into your plugin root path.
- If you are Developing with eclipse, you only have to put the JAR files in the /plugins_src/yourplugin folder. Eclipse will copy the JAR file to the /plugins_bin/yourplugin folder automatically.
- Remember that you have to add the JAR files in your project's classpath (Project->Properties) in order to compile your sources against the JAR library.
- If you are developing with any other environment, you only have to be sure that the JAR is included in your /plugins_bin/yourplugin folder.

