blob: a71fe7feaa9c538df0380e22d90710fd1eb58880 [file] [log] [blame]
Gary Wu49706252017-04-14 13:28:20 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <artifactId>openecomp-common-lib</artifactId>
5 <groupId>org.openecomp.sdc.common</groupId>
6 <version>1.1.0-SNAPSHOT</version>
7 <relativePath>../../pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <groupId>org.openecomp.sdc.common</groupId>
11 <artifactId>openecomp-sdc-artifact-generator-test</artifactId>
12 <build>
13 <plugins>
14 <plugin>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <configuration>
17 <source>1.7</source>
18 <target>1.7</target>
19 </configuration>
20 </plugin>
21 <plugin>
22 <artifactId>maven-shade-plugin</artifactId>
23 <version>${mvn.shade.version}</version>
24 <executions>
25 <execution>
26 <phase>package</phase>
27 <goals>
28 <goal>shade</goal>
29 </goals>
30 <configuration>
31 <artifactSet>
32 <excludes>
33 <exclude>com.google.guava:*</exclude>
34 </excludes>
35 </artifactSet>
36 </configuration>
37 </execution>
38 </executions>
39 </plugin>
40 </plugins>
41 </build>
42</project>
43