Disable additional-install

Add a plugin which will disable to additional-install
execution of the maven-install-plugin. This corrects
an issue where this plugin causes an error during
building on certain systems.

Change-Id: I90a13c2f18f65332a776646647f58fb4d10b1f00
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1699
diff --git a/bundle-parent/pom.xml b/bundle-parent/pom.xml
index 97292c7..70cac9a 100644
--- a/bundle-parent/pom.xml
+++ b/bundle-parent/pom.xml
@@ -35,4 +35,20 @@
         <relativePath />
     </parent>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-install-plugin</artifactId>
+                <version>2.5.2</version>
+                <executions>
+                    <execution>
+                        <id>additional-install</id>
+                        <phase>none</phase>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>