aboutsummaryrefslogtreecommitdiffstats
path: root/common/pom.xml
diff options
context:
space:
mode:
authorvempo <vitaliy.emporopulo@amdocs.com>2018-08-12 14:17:59 +0300
committerAvi Gaffa <avi.gaffa@amdocs.com>2018-08-14 07:05:19 +0000
commit1929d75c6856e212979c3a9c7950dfd717d3bb98 (patch)
tree6b2c10c40d1b6d70b280407ebed3196e76688e49 /common/pom.xml
parent1a4db8f598590cc63b6d94a8dac3489b20365f9b (diff)
Removed execution of PMD from build
Change-Id: I52d55e2585c56118c685745c00e52c2838b76d04 Issue-ID: SDC-1065 Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'common/pom.xml')
-rw-r--r--common/pom.xml89
1 files changed, 0 insertions, 89 deletions
diff --git a/common/pom.xml b/common/pom.xml
index 29344ec3af..cd6c3d8b5e 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -75,13 +75,6 @@
<groupId>org.openecomp.sdc.onboarding</groupId>
<artifactId>compile-helper-plugin</artifactId>
<version>${project.version}</version>
- <dependencies>
- <dependency>
- <groupId>org.openecomp.sdc.onboarding</groupId>
- <artifactId>pmd-helper-plugin</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
<executions>
<execution>
<goals>
@@ -107,88 +100,6 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <version>${maven.pmd.plugin.version}</version>
- <dependencies>
- <dependency>
- <groupId>org.openecomp.sdc</groupId>
- <artifactId>build-tools</artifactId>
- <version>${build.tools.version}</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.pmd</groupId>
- <artifactId>pmd-core</artifactId>
- <version>${pmd.core.version}</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.pmd</groupId>
- <artifactId>pmd-java</artifactId>
- <version>${pmd.java.version}</version>
- </dependency>
- </dependencies>
- <configuration>
- <skip>${skipPMD}</skip>
- <showPmdLog>false</showPmdLog>
- <analysisCache>false</analysisCache>
- <analysisCacheLocation>${project.build.directory}/pmd/pmd.cache</analysisCacheLocation>
- <failOnViolation>false</failOnViolation>
- <printFailingErrors>false</printFailingErrors>
- <format>csv</format>
- <targetDirectory>${project.build.directory}/pmd</targetDirectory>
- <includeTests>true</includeTests>
- <linkXRef>false</linkXRef>
- <aggregate>false</aggregate>
- <rulesets>
- <ruleset>/category/java/bestpractices.xml</ruleset>
- <ruleset>/category/java/codestyle.xml</ruleset>
- <ruleset>/category/java/design.xml</ruleset>
- <ruleset>/category/java/errorprone.xml</ruleset>
- <ruleset>/category/java/multithreading.xml</ruleset>
- <ruleset>/category/java/performance.xml</ruleset>
- <ruleset>/category/java/security.xml</ruleset>
- </rulesets>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- <phase>integration-test</phase>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.openecomp.sdc.onboarding</groupId>
- <artifactId>pmd-helper-plugin</artifactId>
- <version>${project.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>init-pmd-helper</goal>
- <goal>post-verify-helper</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <excludePackaging>pom</excludePackaging>
- <pmdTargetLocation>${project.build.directory}/pmd/pmd.xml</pmdTargetLocation>
- <pmdFailureReportLocation>${project.build.directory}/pmd.txt</pmdFailureReportLocation>
- <pmdReportFile>${project.build.directory}/pmd/pmd.csv</pmdReportFile>
- <persistingModuleCoordinates>org.openecomp.sdc:build-data-installer</persistingModuleCoordinates>
- <pmdCurrentStateFilePath>
- org.openecomp.sdc:sdc-onboarding/target/build-data/pmdState.dat
- </pmdCurrentStateFilePath>
- <pmdStateFile>${project.build.outputDirectory}/pmd.dat</pmdStateFile>
- <compiledFilesList>
- ${project.build.directory}/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
- </compiledFilesList>
- <compiledTestFilesList>
- ${project.build.directory}/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
- </compiledTestFilesList>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${mvn.jar.version}</version>
<configuration>