diff options
author | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2017-10-23 15:20:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-23 15:20:39 +0000 |
commit | 1a480bc8be16c11991760e009c22cb9a555067bd (patch) | |
tree | 0b4159cafc7449d087e55959ebb634e2f94990ad | |
parent | 6bcb1b6ce1ee3e905ac0bfdbe5938c70b20604fc (diff) | |
parent | e0c1d8c61904a4f6491964949b193eb604a206be (diff) |
Merge "Run static analysis on Onboarding production code"
-rw-r--r-- | onboarding/pom.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/onboarding/pom.xml b/onboarding/pom.xml index 0582c764af..50f4649c11 100644 --- a/onboarding/pom.xml +++ b/onboarding/pom.xml @@ -2,7 +2,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.openecomp.sdc</groupId> <artifactId>sdc-onboarding</artifactId> <packaging>pom</packaging> @@ -108,7 +107,7 @@ <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> <configuration> - <skip>${skipSA}</skip> + <skip>${pmd.skip}</skip> </configuration> <executions> <execution> @@ -126,9 +125,10 @@ <artifactId>maven-pmd-plugin</artifactId> <version>3.8</version> <configuration> - <skip>${skipSA}</skip> + <skip>${pmd.skip}</skip> <aggregate>false</aggregate> - <targetJdk>${maven.compiler.target}</targetJdk> + <includeTests>${pmd.include.tests}</includeTests> + <printFailingErrors>true</printFailingErrors> <rulesets> <ruleset>build-pmd-ruleset.xml</ruleset> </rulesets> |