Link Search Menu Expand Document

Installation

JGEA can be installed using Maven.

Table of contents

  1. Cloning the repository
  2. Using the pre-packaged version

Cloning the repository

Clone JGEA on your local device:

git clone https://github.com/ericmedvet/jgea.git

Proceed with the installation:

mvn install

To include JGEA in your project edit its pom.xml adding the following dependency:

<dependencies>
        <dependency>
            <groupId>it.units.malelab</groupId>
            <artifactId>JGEA</artifactId>
            <version>2.0.2</version>
        </dependency>
</dependencies>

Using the pre-packaged version

Download the zip file and place it in the libs folder of your project.

Edit the pom.xml of your project adding the following dependency:

<dependencies>
        <dependency>
            <groupId>it.units.malelab</groupId>
            <artifactId>JGEA</artifactId>
            <version>2.0.2</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/libs/JGEA.jar</systemPath>
        </dependency>
</dependencies>