Link

Add as a Maven dependency

In order to use FormVu in a Maven project, you will need to add the jar to the project as a dependency. This can be done in two ways.

Manually

  1. Existing customers can download the FormVu jar from here To download the trial jar visit here
  2. Install jar into your local maven repository
    mvn install:install-file -Dfile=<path-to-FormVu-jar> -DgroupId=com.idrsolutions -Dpackaging=jar -DartifactId=formvu -Dversion=1.0  
    
  3. Once done this can be added to your project by adding the following to your pom file dependencies.
    <dependencies>
        <dependency>
            <groupId>com.idrsolutions</groupId>
            <artifactId>formvu</artifactId>
            <version>1.0</version>
        </dependency>
    </dependencies>
    

    The example above is using the values from step 2, if you used custom values you will need to update these.

Using Our Remote Repository

  1. In order to use our remote repository, you need to add your login information to your user settings.xml, this can be found in your .m2 directory (usually in %userprofile%\.m2\ for windows, and ~/.m2/ for linux/mac). If settings.xml does not already exist, you can create it yourself (A reference for the file can be found here).

    Once in your settings.xml, add the following to your servers:

    <servers>
        <server>
            <id>IDRsolutions</id>
            <username>{Customer Username or Trial Token}</username>
            <password>{Customer Password or Trial Token}</password>
        </server>
    </servers>
    

    Please note that if you’re trying to access the trial jar then you must set both the username and password to your trial token

  2. Then, in your project’s pom file, you can add our remote repository with:
    <repositories>
       <repository>
           <id>IDRsolutions</id>
           <name>IDR Solutions</name>
           <url>https://maven.idrsolutions.com</url>
       </repository>
    </repositories>
    
  3. Finally, also in your project’s pom file, you need to add FormVu as a dependency:
    <dependencies>
        <dependency>
            <groupId>com.idrsolutions</groupId>
            <artifactId>{artifactId}</artifactId>
            <version>{YYYY.MM}</version>
        </dependency>
    </dependencies>
    

    Customer Artifact IDs:

    • formvu where version is in the format YYYY.MM

    Trial Artifact IDs:

    • formvu-trial where version is in the format YYYY.MM

    Daily Builds:

    Customers may access daily builds with the following artifact IDs. Please note that we only store the most recent daily build.

    • formvu-daily where version is in the format YYYY.MM.DD