Skip to main content

Getting Started : Download

A customer account is required to download the ActivePivot application.

The released artifacts can be found here, with a different folder for each stable version.

The recommended way to access them is to add ActivePivot's Artifactory repository as a private maven repository. To do so, add the following tag to your settings.xml file.

<repository>
<id>ActiveViamInternalRepository</id>
<name>ActiveViam Internal Repository</name>
<url>https://activeviam.jfrog.io/activeviam/mvn-internal/</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>

As downloading artifacts requires an Artifactory customer account, you will also need to provide your Artifactory credentials via a <servers> tag. We recommend doing so through server password encryption, to avoid having plain-text passwords in your settings.xml.

Alternatively, you may download the maven repository manually. It is provided as a .zip file, that needs to be unzipped and its contents copied into your maven repository, keeping the directory tree intact.

If you are new to ActivePivot, you will also probably want to use the sandbox project, that contains the sources of an example ActivePivot application. It is also provided as a .zip file that you need to uncompress. \ To make sure all dependencies are correctly installed, we recommend running mvn clean install -DskipTests on the sandboxes directory prior to importing it as a maven project in your IDE. Don't hesitate to read the README.md files at the root of each module. A short guide to the sandbox project is also available here.