blob: fe0bab29f64b6c2accc8e1ddef774f465cbff759 [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>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <configuration>
16 <source>1.7</source>
17 <target>1.7</target>
18 </configuration>
19 </plugin>
20 <plugin>
21 <artifactId>maven-shade-plugin</artifactId>
22 <version>${mvn.shade.version}</version>
23 <executions>
24 <execution>
25 <phase>package</phase>
26 <goals>
27 <goal>shade</goal>
28 </goals>
29 <configuration>
30 <artifactSet>
31 <excludes>
32 <exclude>com.google.guava:*</exclude>
33 </excludes>
34 </artifactSet>
35 </configuration>
36 </execution>
37 </executions>
38 </plugin>
39 </plugins>
40 </build>
41</project>
42