Gautam Shah | b145c08 | 2018-05-27 13:32:07 +0530 | [diff] [blame] | 1 | <?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-helper</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 | <artifactPathToCopy>${project.groupId}/${project.artifactId}/${project.version}/${project.artifactId}-${project.version}.jar</artifactPathToCopy> |
| 19 | </properties> |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.openecomp.sdc.onboarding</groupId> |
| 24 | <artifactId>artifact-copy-plugin</artifactId> |
| 25 | <version>${project.version}</version> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <id>id3</id> |
| 29 | <goals> |
| 30 | <goal>copy-helper</goal> |
| 31 | <goal>calibrate-artifact-helper</goal> |
| 32 | </goals> |
| 33 | <phase>install</phase> |
| 34 | </execution> |
| 35 | <execution> |
| 36 | <id>id4</id> |
| 37 | <goals> |
| 38 | <goal>init-artifact-helper</goal> |
| 39 | </goals> |
| 40 | </execution> |
| 41 | </executions> |
| 42 | <configuration> |
| 43 | <groupId>org.openecomp.sdc</groupId> |
| 44 | <artifactId>build-data-installer</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | <targetLocation>build-data-helper</targetLocation> |
| 47 | <name>build-data-helper-${project.version}.jar</name> |
| 48 | <artifactHelper> |
| 49 | <project>${project}</project> |
| 50 | </artifactHelper> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-dependency-plugin</artifactId> |
Gautam Shah | e1e4f69 | 2018-05-29 13:43:49 +0530 | [diff] [blame] | 56 | <version>${maven.dependency.version}</version> |
Gautam Shah | b145c08 | 2018-05-27 13:32:07 +0530 | [diff] [blame] | 57 | <executions> |
| 58 | <execution> |
| 59 | <id>id1</id> |
| 60 | <goals> |
| 61 | <goal>get</goal> |
| 62 | </goals> |
| 63 | <phase>clean</phase> |
| 64 | <configuration> |
| 65 | <artifactId>build-data-helper</artifactId> |
| 66 | </configuration> |
| 67 | </execution> |
| 68 | <execution> |
| 69 | <id>id2</id> |
| 70 | <goals> |
| 71 | <goal>get</goal> |
| 72 | </goals> |
| 73 | <phase>clean</phase> |
| 74 | <configuration> |
| 75 | <artifactId>build-data-installer</artifactId> |
| 76 | </configuration> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | <configuration> |
| 80 | <groupId>org.openecomp.sdc</groupId> |
| 81 | <version>${project.version}</version> |
| 82 | <skip>${skipGet}</skip> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | </project> |