Gary Wu | 4970625 | 2017-04-14 13:28:20 -0700 | [diff] [blame] | 1 | <?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 Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 6 | <version>1.2.0-SNAPSHOT</version>
|
Gary Wu | 4970625 | 2017-04-14 13:28:20 -0700 | [diff] [blame] | 7 | <relativePath>../../pom.xml</relativePath>
|
| 8 | </parent>
|
| 9 | <modelVersion>4.0.0</modelVersion>
|
Gary Wu | 4970625 | 2017-04-14 13:28:20 -0700 | [diff] [blame] | 10 | <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 |
|