DoctorPivot Installation
Installing
DoctorPivot is bolted onto existing projects by adding the code shown below. If you only wish to use the API, Web App dependencies can be omitted.
/pom.xml:
</properties>
<dependency>
<groupId>com.activeviam.apps</groupId>
<artifactId>doctorpivot-api</artifactId>
<version>${doctorpivot.version}</version>
</dependency>
<dependency>
<groupId>com.activeviam.apps</groupId>
<artifactId>doctorpivot-web-app</artifactId>
<version>${doctorpivot.version}</version>
</dependency>
{submodule}/pom.xml:
syntaxhighlighter-pre
<dependency>
<groupId>com.activeviam.apps</groupId>
<artifactId>doctorpivot-api</artifactId>
</dependency>
<dependency>
<groupId>com.activeviam.apps</groupId>
<artifactId>doctorpivot-web-app</artifactId>
</dependency>