Index of /to/networld/soap/security/soap_security_framework

[ICO]NameLast modifiedSizeDescription

[DIR]Parent Directory  -  
[DIR]0.1-SNAPSHOT/09-Aug-2011 16:17 -  
[DIR]0.1/09-Aug-2011 16:17 -  
[DIR]0.2-SNAPSHOT/09-Aug-2011 16:17 -  
[DIR]0.2/09-Aug-2011 16:17 -  
[DIR]0.3-SNAPSHOT/09-Aug-2011 16:17 -  
[   ]maven-metadata.xml15-Aug-2011 17:40 502  
[   ]maven-metadata.xml.md509-Aug-2011 16:16 52  
[   ]maven-metadata.xml.sha109-Aug-2011 16:16 60  

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>