blob: dc813e7b4a20403aaae86594865b6779e80affa8 [file] [log] [blame]
Gautam Shah3de22e12018-04-21 16:18:37 +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.onboarding</groupId>
8 <artifactId>compile-helper-plugin</artifactId>
9 <packaging>maven-plugin</packaging>
10
11 <parent>
12 <artifactId>sdc-onboarding</artifactId>
13 <groupId>org.openecomp.sdc</groupId>
Michael Landod8a0dea2018-06-02 19:23:27 +030014 <version>1.3.0-SNAPSHOT</version>
Gautam Shah3de22e12018-04-21 16:18:37 +053015 <relativePath>../../../onboarding</relativePath>
16 </parent>
Gautam Shahb145c082018-05-27 13:32:07 +053017 <properties>
18 <skipPMD>true</skipPMD>
19 <classes>classes/**/*.class</classes>
20 <mavenStatus>maven-status/**</mavenStatus>
21 <skipTestRun>true</skipTestRun>
22 </properties>
Gautam Shah3de22e12018-04-21 16:18:37 +053023 <dependencies>
24 <dependency>
25 <groupId>org.apache.maven</groupId>
26 <artifactId>maven-core</artifactId>
27 <version>${maven-core.version}</version>
28 </dependency>
29 <dependency>
30 <groupId>org.apache.maven.plugin-tools</groupId>
31 <artifactId>maven-plugin-annotations</artifactId>
32 <version>${maven-plugin-annotations.version}</version>
33 </dependency>
34 </dependencies>
35
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-plugin-plugin</artifactId>
41 <version>${maven-plugin-plugin.version}</version>
42 </plugin>
43 </plugins>
44 </build>
45
46</project>