diff options
author | Michael Hwang <mhwang@research.att.com> | 2019-12-12 12:50:54 -0500 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2019-12-12 12:50:54 -0500 |
commit | 9cb529e42f5625f2fa802e21919b10f814a89ca7 (patch) | |
tree | 0de178e7917321978388480917b99fc6d27a5022 /mod | |
parent | 5f7ec21a7398fa0f3c0cfdb060938de86dc34019 (diff) |
Add+disable maven-deploy for runtimeapi
Issue-ID: DCAEGEN2-1860
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Change-Id: I27c1ad85dcbe821ae3162d6203eb02a9dfbe006d
Diffstat (limited to 'mod')
-rw-r--r-- | mod/runtimeapi/runtime-web/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mod/runtimeapi/runtime-web/pom.xml b/mod/runtimeapi/runtime-web/pom.xml index 8d77a7b..19d2af7 100644 --- a/mod/runtimeapi/runtime-web/pom.xml +++ b/mod/runtimeapi/runtime-web/pom.xml @@ -75,6 +75,17 @@ <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> |