Index of /
Useful Links!
How to include a library to your maven project?
First you have to include our repository to your pom.xml file.
<repositories>
...
<repository>
<id>networld-repo</id>
<name>Networld Repository</name>
<url>http://repo1.networld.to</url>
</repository>
...
</repositories>
Please look at the directory structure what libraries are available and if there is a newer version.
The following example includes the concept handler version 0.1.
<dependencies>
...
<dependency>
<groupId>to.networld.concept</groupId>
<artifactId>concepthandler</artifactId>
<version>0.1</version>
</dependency>
...
</dependencies>