diff options
author | Lusheng Ji <lji@research.att.com> | 2017-09-26 17:52:44 +0200 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2017-09-26 17:53:01 +0200 |
commit | b276f3837d1dfa990e24888cc7ff5d421cbafd12 (patch) | |
tree | 9ef1e49803ea23f5f910bcfc3daa942b2a262ffc /platformdoc | |
parent | ef17e0e73288b8d1a7a5124a62eef54b13722f7e (diff) |
Test pom changes
Issue-Id: DCAEGEN2-60
Change-Id: I320e4e660246a87147951355c71705183d749892
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'platformdoc')
-rw-r--r-- | platformdoc/pom.xml | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/platformdoc/pom.xml b/platformdoc/pom.xml index 573f395d..6ae7ea5d 100644 --- a/platformdoc/pom.xml +++ b/platformdoc/pom.xml @@ -53,6 +53,77 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <finalName>${project.artifactId}-${project.version}</finalName> <pluginManagement> <plugins> + <!-- the following plugins are invoked from oparent, we do not need them --> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <!-- This version supports the "deployAtEnd" parameter --> + <version>2.8</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- first disable the default Java plugins at various stages --> + <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares + the resources dir. we do not need it --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>2.6</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>default-jar</id> + <phase/> + </execution> + </executions> + </plugin> + <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under + target dir to ~/.m2. we do not need it --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-install-plugin</artifactId> + <version>2.4</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. + we do not need it --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.12.4</version> + <configuration> + <skipTests>true</skipTests> + </configuration> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> |