blob: 2d79e472e96b4efcfb9632bf2259fcbd05912899 [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>
Michael Landod8a0dea2018-06-02 19:23:27 +030013 <version>1.3.0-SNAPSHOT</version>
Gautam Shahb145c082018-05-27 13:32:07 +053014 <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>
Gautam Shahb145c082018-05-27 13:32:07 +053025 <executions>
26 <execution>
27 <goals>
28 <goal>init-pmd-helper</goal>
29 <goal>post-verify-helper</goal>
30 </goals>
31 </execution>
32 </executions>
33 <configuration>
34 <excludePackaging>pom</excludePackaging>
35 <pmdTargetLocation>${project.build.directory}/pmd/pmd.xml</pmdTargetLocation>
36 <pmdReportFile>${project.build.directory}/pmd/pmd.csv</pmdReportFile>
37 <pmdFailureReportLocation>${project.build.directory}/pmd.txt</pmdFailureReportLocation>
38 <persistingModuleCoordinates>org.openecomp.sdc:build-data-installer</persistingModuleCoordinates>
39 <pmdCurrentStateFilePath>org.openecomp.sdc:sdc-onboarding/target/build-data/pmdState.dat</pmdCurrentStateFilePath>
40 <pmdStateFile>${project.build.outputDirectory}/pmd.dat</pmdStateFile>
41 </configuration>
42 </plugin>
Gautam Shah03205da2018-06-01 08:38:32 +053043 <plugin>
44 <groupId>org.openecomp.sdc.onboarding</groupId>
45 <artifactId>artifact-copy-plugin</artifactId>
46 <version>${project.version}</version>
47 <executions>
48 <execution>
49 <goals>
50 <goal>init-artifact-helper</goal>
51 <goal>calibrate-artifact-helper</goal>
52 </goals>
53 </execution>
54 </executions>
55 <configuration>
56 <groupId>org.openecomp.sdc</groupId>
57 <artifactId>build-data-installer</artifactId>
58 <version>${project.version}</version>
59 <artifactHelper>
60 <project>${project}</project>
61 <session>${session}</session>
62 <unicornRoot>org.openecomp.sdc:sdc-onboarding/target/build-data</unicornRoot>
63 </artifactHelper>
64 </configuration>
65 </plugin>
Gautam Shahb145c082018-05-27 13:32:07 +053066 </plugins>
67 </build>
68</project>