I downloaded the source and built caliper like this:
mvn eclipse:configure-workspace eclipse:eclipse install
Now the /target folder has:
caliper-1.0-beta-SNAPSHOT-all.jar generated-sources surefire
caliper-1.0-beta-SNAPSHOT-sources.jar generated-test-sources surefire-reports
caliper-1.0-beta-SNAPSHOT.jar maven-archiver test-classes
classes maven-status
Now in my spring mvc application's pom file, how do I reference this local repository that I just installed?
I was referencing caliper using a dependancy like this:
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>${caliper-version}</version>
<scope>test</scope>
</dependency>
But as per my last question I was advised to build from source to get an update that isn't published yet: Caliper test using exec-maven-plugin is saying main method signature isn't valid
So I am not sure how to reference this caliper version that I built locally and installed using maven.
If version is eg 1.0-SNAPSHOT then place the jar here