diff options
author | Michael Hwang <mhwang@research.att.com> | 2019-12-12 11:57:57 -0500 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2019-12-12 11:57:57 -0500 |
commit | 5f7ec21a7398fa0f3c0cfdb060938de86dc34019 (patch) | |
tree | 3109a8dc8c26ca93bb9965e44ff8884c7b2de6de | |
parent | a1f590d75dc29759d2abaa14915c70838abdc9c2 (diff) |
Add+disable maven-deploy for runtimeapi
Issue-ID: DCAEGEN2-1860
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Change-Id: If6b8fc1dde30acd980b91e7c076dece4237741db
-rw-r--r-- | mod/runtimeapi/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/runtimeapi/pom.xml b/mod/runtimeapi/pom.xml index 8851ae0..b6ce24a 100644 --- a/mod/runtimeapi/pom.xml +++ b/mod/runtimeapi/pom.xml @@ -23,4 +23,17 @@ <java.version>1.8</java.version> </properties> + <build> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> </project> |