diff options
author | Guobiao Mo <guobiaomo@chinamobile.com> | 2019-07-18 20:09:29 -0700 |
---|---|---|
committer | Guobiao Mo <guobiaomo@chinamobile.com> | 2019-07-18 20:09:29 -0700 |
commit | 06e295edbb7e097833b51a889f6d79d2d44affcf (patch) | |
tree | 508e8030473880d2b2a91fac467a5c3c4055add3 | |
parent | bea41512aa8164020d6d129aed7bbc1d34450a49 (diff) |
Add maven-deploy-plugin
For
JJB alignment across DCAE components - DCAE services
Issue-ID: DCAEGEN2-1578
Change-Id: I3e3b4b70054a1799c88d65ae470309c32cb467e6
Signed-off-by: Guobiao Mo <guobiaomo@chinamobile.com>
-rw-r--r-- | components/datalake-handler/feeder/pom.xml | 29 | ||||
-rw-r--r-- | components/datalake-handler/pom.xml | 10 |
2 files changed, 10 insertions, 29 deletions
diff --git a/components/datalake-handler/feeder/pom.xml b/components/datalake-handler/feeder/pom.xml index 8c285f84..560e1e71 100644 --- a/components/datalake-handler/feeder/pom.xml +++ b/components/datalake-handler/feeder/pom.xml @@ -165,33 +165,4 @@ </dependency> </dependencies> - <build> - <plugins> - <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <version>${springboot.version}</version> - <executions> - <execution> - <goals> - <goal>repackage</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <artifactId>maven-failsafe-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>integration-test</goal> - <goal>verify</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </project> diff --git a/components/datalake-handler/pom.xml b/components/datalake-handler/pom.xml index 9702aa17..103a1eb5 100644 --- a/components/datalake-handler/pom.xml +++ b/components/datalake-handler/pom.xml @@ -241,6 +241,16 @@ <downloadJavadocs>true</downloadJavadocs> </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> </build> |