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