Refactor Code NodeTemplateOperation
[sdc.git] / openecomp-be / tools / artifact-copy-plugin / pom.xml
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>
13         <version>1.3.3-SNAPSHOT</version>
14         <relativePath>../../../onboarding/pom.xml</relativePath>
15     </parent>
16     <properties>
17         <classes>classes/**/*.class</classes>
18         <mavenStatus>maven-status/**</mavenStatus>
19         <skipTestRun>true</skipTestRun>
20     </properties>
21     <dependencies>
22         <dependency>
23             <groupId>org.apache.maven</groupId>
24             <artifactId>maven-core</artifactId>
25             <version>${maven-core.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.apache.maven.plugin-tools</groupId>
29             <artifactId>maven-plugin-annotations</artifactId>
30             <version>${maven-plugin-annotations.version}</version>
31         </dependency>
32     </dependencies>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <groupId>org.apache.maven.plugins</groupId>
38                 <artifactId>maven-plugin-plugin</artifactId>
39                 <version>${maven-plugin-plugin.version}</version>
40             </plugin>
41         </plugins>
42     </build>
43
44 </project>