Getting Started

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.

Define Maven Repositories

Add the repository definitions to your POM:

...
<repositories>
    ...
    <repository>
        <id>iqser_release</id>
        <name>iQser Repository</name>
        <url>http://repo.iqser.com/artifactory/repo</url>
        <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>
...

File Content Provider

To use the File Content Provider, add the following dependecy to your POM:

...
<dependencies>
    ...
    <dependency>
        <groupId>net.sf.iqser.plugin.file</groupId>
        <artifactId>filesystem-provider</artifactId>
        <version>2.0-SNAPSHOT</version>
    </dependency>
    ...
</dependencies>
...

File Parsers

If you only want to use the file-parser library, add the following dependecy to your POM:

...
<dependencies>
    ...
    <dependency>
        <groupId>net.sf.iqser.plugin.file</groupId>
        <artifactId>file-parser</artifactId>
        <version>2.0-SNAPSHOT</version>
    </dependency>
    ...
</dependencies>
...