I have a pom like this. all I am trying to do is install the file as llews-1.0-test.jar instead of llews-1.0.jar. while this pom install a jar as llews-1.0-test.jar, it also install the llews-1.0.jar(default) one. how do I disable the default install?
<build>
<finalName>llews-${project.version}-test</finalName>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>install test</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${project.build.directory}\${project.build.finalName}.jar</file>
<pomFile>${basedir}\pom.xml</pomFile>
<classifier>test</classifier>
</configuration>
</execution>
</executions>
</plugin>
</build>