[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-test / 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.common</groupId>
8     <artifactId>openecomp-sdc-artifact-generator-test</artifactId>
9
10     <parent>
11         <artifactId>openecomp-common-lib</artifactId>
12         <groupId>org.openecomp.sdc.common</groupId>
13         <version>1.1.0-SNAPSHOT</version>
14         <relativePath>../../</relativePath>
15     </parent>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.maven.plugins</groupId>
21                 <artifactId>maven-compiler-plugin</artifactId>
22                 <configuration>
23                     <source>1.7</source>
24                     <target>1.7</target>
25                 </configuration>
26             </plugin>
27             <!-- any other plugins -->
28             <plugin>
29             <groupId>org.apache.maven.plugins</groupId>
30             <artifactId>maven-shade-plugin</artifactId>
31             <version>${mvn.shade.version}</version>
32             <executions>
33                 <execution>
34                     <phase>package</phase>
35                     <goals>
36                         <goal>shade</goal>
37                     </goals>
38                     <configuration>
39                         <artifactSet>
40                             <excludes>
41                                 <exclude>com.google.guava:*</exclude>
42                             </excludes>
43                         </artifactSet>
44                     </configuration>
45                 </execution>
46             </executions>
47         </plugin>
48         </plugins>
49     </build>
50
51
52     <dependencies>
53         <dependency>
54             <groupId>org.testng</groupId>
55             <artifactId>testng</artifactId>
56             <version>6.8.8</version>
57         </dependency>
58     <dependency>
59         <groupId>junit</groupId>
60         <artifactId>junit</artifactId>
61         <version>4.11</version>
62     </dependency>
63     <dependency>
64         <groupId>org.openecomp.sdc.common</groupId>
65         <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
66         <version>${project.version}</version>
67     </dependency>
68
69     <dependency>
70         <groupId>org.openecomp.sdc.common</groupId>
71         <artifactId>openecomp-sdc-artifact-generator-core</artifactId>
72         <version>${project.version}</version>
73     </dependency>
74     </dependencies>
75
76 </project>