blob: 94121b5ddc72ae9079a6db6d1a30ede8fe8e444b [file] [log] [blame]
Gautam Shahb145c082018-05-27 13:32:07 +05301<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>org.openecomp.sdc</groupId>
8 <artifactId>build-data-installer</artifactId>
9
10 <parent>
11 <artifactId>sdc-onboarding</artifactId>
12 <groupId>org.openecomp.sdc</groupId>
13 <version>1.2.0-SNAPSHOT</version>
14 <relativePath>../../../onboarding</relativePath>
15 </parent>
16 <properties>
17 <skipPMD>true</skipPMD>
18 </properties>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.openecomp.sdc.onboarding</groupId>
23 <artifactId>pmd-helper-plugin</artifactId>
24 <version>${project.version}</version>
25 <dependencies>
26 <dependency>
27 <groupId>org.openecomp.sdc</groupId>
28 <artifactId>build-data-helper</artifactId>
29 <version>${project.version}</version>
30 </dependency>
31 </dependencies>
32 <executions>
33 <execution>
34 <goals>
35 <goal>init-pmd-helper</goal>
36 <goal>post-verify-helper</goal>
37 </goals>
38 </execution>
39 </executions>
40 <configuration>
41 <excludePackaging>pom</excludePackaging>
42 <pmdTargetLocation>${project.build.directory}/pmd/pmd.xml</pmdTargetLocation>
43 <pmdReportFile>${project.build.directory}/pmd/pmd.csv</pmdReportFile>
44 <pmdFailureReportLocation>${project.build.directory}/pmd.txt</pmdFailureReportLocation>
45 <persistingModuleCoordinates>org.openecomp.sdc:build-data-installer</persistingModuleCoordinates>
46 <pmdCurrentStateFilePath>org.openecomp.sdc:sdc-onboarding/target/build-data/pmdState.dat</pmdCurrentStateFilePath>
47 <pmdStateFile>${project.build.outputDirectory}/pmd.dat</pmdStateFile>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52</project>