Trying to setup a project based repo local to that project and found the answer here, I'm trying to take that further and automate it via the maven-install-plugin. When i run the following with mvn install it installs the jar into my local repo in a base-install step as well as the project repo, how can i override this so it only installs into the project repository
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>maven1</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.build.finalName}.${project.packaging}</file>
<localRepositoryPath>${basedir}/../lib/</localRepositoryPath>
<pomFile>pom.xml</pomFile>
</configuration>
</execution>
</executions>
</plugin>
<repositories>
<repository>
<id>snapshot</id>
<url>file://${basedir}/../lib</url>
</repository>
</repositories>