The full package download contains:
rt-client-x.x.jar (where x.x the current version) : this is the client class that allows to upload a TestCase. If you want, for example, start your TestCase from Intellij Idea, you have to add this jar into your classpath
rt-ejb-x.x.jar : this is the server jar. You usually bundle it into your ear.
if you use Maven, you can just add to your ear project.xml :
<dependency> <groupId>remote-tester</groupId> <artifactId>rt-ejb</artifactId> <version>1.1</version> <properties> <ear.bundle.ejb>true</ear.bundle.ejb> </properties> </dependency>
and put the rt-ejb-x.x.jar into your maven repository in a remote-tester/ejbs directory
rt-ejb-x.x.jar has been configured to be used with jboss (a jboss.xml is available in the META.INF directory)
so you must add your server proprietary xml configuration file if you are using a different server... what should not be difficult... (I would be pleased if you e-mail it to me so I can add it to the distribution)
The full source code. If you want to build the jar files and the example ear, you need to have ant installed and call ant on the project.xml file (ant -buildfile project.xml) into the antTasks directory
The project is not yet fully "mavenized", so right now you can only only use maven to build the website (maven site:generate).
This is because when I started the RemoteTester project, one year ago, I didn't know about maven and I was still using ant for projects build process... I will move the all build process to maven as soon as I can find enough time for that (this is a low priority on my very long todo list)!