summaryrefslogtreecommitdiffstats
path: root/odlparent-lite
diff options
context:
space:
mode:
authorPatrick Brady <patrick.brady@att.com>2019-08-09 10:51:41 -0700
committerPatrick Brady <patrick.brady@att.com>2019-08-09 10:51:46 -0700
commit064339251724b56bbafeef2fabca88f6b1b18eb5 (patch)
treee3c32da567398012a069fda656be3b048f7d1e47 /odlparent-lite
parentd72895e73699bf047f337af54ebf0d927ba90b02 (diff)
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
Diffstat (limited to 'odlparent-lite')
-rw-r--r--odlparent-lite/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/odlparent-lite/pom.xml b/odlparent-lite/pom.xml
index 6877751..d8c6a71 100644
--- a/odlparent-lite/pom.xml
+++ b/odlparent-lite/pom.xml
@@ -50,4 +50,20 @@ limitations under the License.
</dependencies>
</dependencyManagement>
+ <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>