diff options
Diffstat (limited to 'onboarding/pom.xml')
-rw-r--r-- | onboarding/pom.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/onboarding/pom.xml b/onboarding/pom.xml index 0582c764af..d3023c5049 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> @@ -96,7 +95,6 @@ <ws.rs.version>2.0.1</ws.rs.version> <!-- New version 2.0.1 to fix blackduck violation Failing with comiplation issues--> <zusammen.version>0.2.0</zusammen.version> <zusammen-state-store.version>0.2.2</zusammen-state-store.version> - <skipSA>true</skipSA> <pmd.version>5.8.1</pmd.version> <build.tools.version>${project.version}</build.tools.version> </properties> @@ -108,7 +106,7 @@ <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> <configuration> - <skip>${skipSA}</skip> + <skip>${pmd.skip}</skip> </configuration> <executions> <execution> @@ -126,9 +124,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>true</includeTests> + <printFailingErrors>true</printFailingErrors> <rulesets> <ruleset>build-pmd-ruleset.xml</ruleset> </rulesets> |