This guide will help you start using the artifacts in your own project.
Reminder: For accessing the iQser repository, you need a free developer account. Use the contact form on the iQser Website. or send an email to iQser Support.
Add the repository definitions to your POM:
...<repositories> ... <repository> <id>iqser_release</id> <name>iQser Repository</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>iqserfileplugin-repo</id> <name>iQser File Plugin Repository</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>iqserfileplugin-repo-snap</id> <name>iQser File Plugin Snapshot Repository</name> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> ...</repositories>... |