Maven 2

To use Gaderian modules within your Maven 2 enabled project, simply add the following repository to your pom:

                    ...
                    <repositories>
                        ...
                       <repository>
                          <id>ops4j-repo</id>
                          <name>OPS4J Maven 2 Repository</name>
                          <url>http://repository.ops4j.org/maven2/</url>
                       </repository>
                    </repositories>
            

Next, add the dependencies for the modules of Gaderian that you wish to use:

                    <dependencies>
                        ...
                        <dependency>
                         <groupId>org.ops4j.gaderian</groupId>
                         <artifactId>gaderian</artifactId>
                         <version>1.0</version>
                       </dependency>
                       
                      <dependency>
                        <groupId>org.ops4j.gaderian</groupId>
                        <artifactId>gaderian-util</artifactId>
                        <version>1.0</version>
                      </dependency>
                       
                       
                    </dependencies>