Download

The project is located in the http://delo.dcs.fmph.uniba.sk/sioux/maven2 Maven 2 repository.

To just try GENE quickly please download GENE runner.

To grab the library you may

  • Download gene-runner containing GENE library, all plugins and a runner script here
  • Download gene library from the repository

and select the release file:

  • gene-runner-x.x-bin.zip - jar file with all its dependencies, no sources
  • gene-runner-x.x-src.zip - zipped sources with maven pom.xml file.

Building from sources

To build GENE from sources you need Maven 2. Unpack the gene-x.x-src.zip, go into the sk.baka.xml.gene-pom directory and run

mvn

To configure maven please see maven proxy guide. You have to put the settings.xml file into $HOME/.m2 directory.

You have to add a custom repository to download all files needed. Edit the $HOME/.m2/settings.xml file and add the following profiles section:

<settings>
 
 ...
 
 <profiles>
   <profile>
     <id>default</id>
     <repositories>
       <repository>
         <id>ibiblio</id>
         <name>www.ibiblio.org</name>
         <url>http://www.ibiblio.org/maven2</url>
       </repository>
       <repository>
         <id>julien.dubois</id>
         <name>julien.dubois</name>
         <url>http://julien.dubois.free.fr/maven2</url>
       </repository>
       <repository>
         <id>delo</id>
         <name>delo</name>
         <url>http://delo.dcs.fmph.uniba.sk/sioux/maven2</url>
       </repository>
     </repositories>
   </profile>
 </profiles>
 <activeProfiles>
   <activeProfile>default</activeProfile>
 </activeProfiles>
 
 ...
 
</settings>