blob: b1c35cf3a90561370f909883d4ecda7b021a7706 [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>
Michael Lando0ad3c802017-09-19 16:32:59 +03006 <version>1.2.0-SNAPSHOT</version>
Gary Wu49706252017-04-14 13:28:20 -07007 <relativePath>../../pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
Gary Wu49706252017-04-14 13:28:20 -070010 <artifactId>openecomp-sdc-artifact-generator-test</artifactId>
11 <build>
12 <plugins>
13 <plugin>
Gary Wu49706252017-04-14 13:28:20 -070014 <artifactId>maven-shade-plugin</artifactId>
15 <version>${mvn.shade.version}</version>
16 <executions>
17 <execution>
18 <phase>package</phase>
19 <goals>
20 <goal>shade</goal>
21 </goals>
22 <configuration>
23 <artifactSet>
24 <excludes>
25 <exclude>com.google.guava:*</exclude>
26 </excludes>
27 </artifactSet>
28 </configuration>
29 </execution>
30 </executions>
31 </plugin>
32 </plugins>
33 </build>
34</project>
35