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.onboarding</groupId> |
| 8 | <artifactId>artifact-copy-plugin</artifactId> |
| 9 | <packaging>maven-plugin</packaging> |
| 10 | <parent> |
| 11 | <artifactId>sdc-onboarding</artifactId> |
| 12 | <groupId>org.openecomp.sdc</groupId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 13 | <version>1.3.0-SNAPSHOT</version> |
Gautam Shah | b145c08 | 2018-05-27 13:32:07 +0530 | [diff] [blame] | 14 | <relativePath>../../../onboarding</relativePath> |
| 15 | </parent> |
| 16 | <properties> |
| 17 | <skipPMD>true</skipPMD> |
| 18 | <classes>classes/**/*.class</classes> |
| 19 | <mavenStatus>maven-status/**</mavenStatus> |
| 20 | <skipTestRun>true</skipTestRun> |
| 21 | </properties> |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>org.apache.maven</groupId> |
| 25 | <artifactId>maven-core</artifactId> |
| 26 | <version>${maven-core.version}</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.apache.maven.plugin-tools</groupId> |
| 30 | <artifactId>maven-plugin-annotations</artifactId> |
| 31 | <version>${maven-plugin-annotations.version}</version> |
| 32 | </dependency> |
| 33 | </dependencies> |
| 34 | |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.maven.plugins</groupId> |
| 39 | <artifactId>maven-plugin-plugin</artifactId> |
| 40 | <version>${maven-plugin-plugin.version}</version> |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | </build> |
| 44 | |
| 45 | </project> |