My favorites | Sign in
Project Logo
                
Feeds:
People details
Project owners:
  oliverwinks

an evolution harness for my PhD work.

  1. Download the EvolutionHarness project into Netbeans using SVN
  2. Find build.xml in the EvolutionHarness folder.
    1. Replace all "Username" and "Password" for your sussex username and password.
  3. Compile the project
    1. A file structure will be created in your HOME directory (default is "/PHD/EvolutionHarness/bin/lib")
  4. Create a new library called EvolutionHarness (note: it can be called anything)
    1. Add EvolutionHarness.jar to the library
    2. Add client.jar to the library
    3. Add server.jar to the library
  5. Create your own project
    1. Add the library to your project
  6. Make sure the project has an entry point (a class that implements rmi.client.Executable)
  7. Compile your project
  8. Move your project .jar file to /PHD/EvolutionHarness/bin (copy the ant script below into your build.xml to automate this task)

<target name="-post-jar">

<scp password="password" todir="username@unix.rn.informatics.scitech.susx.ac.uk:PHD/EvolutionHarness/bin" trust="true" verbose="true">
<fileset excludes="lib/*.* README.TXT" dir="dist"/>
</scp>
</target>









Hosted by Google Code