blob: 7ac95969313041a678c320660985bc85fe293c1d [file] [log] [blame]
amitjai42c920b2018-04-27 13:28:57 +05301<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
vempodecd2df2018-07-23 19:07:37 +03003 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">
amitjai42c920b2018-04-27 13:28:57 +05305
vempodecd2df2018-07-23 19:07:37 +03006 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +05307
vempodecd2df2018-07-23 19:07:37 +03008 <artifactId>onap-sdc-artifact-generator-test</artifactId>
amitjai42c920b2018-04-27 13:28:57 +05309
vempodecd2df2018-07-23 19:07:37 +030010 <parent>
11 <artifactId>onap-common-lib</artifactId>
12 <groupId>org.onap.sdc.common</groupId>
13 <version>1.3.0-SNAPSHOT</version>
14 <relativePath>../../pom.xml</relativePath>
15 </parent>
amitjai42c920b2018-04-27 13:28:57 +053016
vempodecd2df2018-07-23 19:07:37 +030017 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
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>
amitjai42c920b2018-04-27 13:28:57 +053041
vempodecd2df2018-07-23 19:07:37 +030042 <dependencies>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.onap.sdc.common</groupId>
50 <artifactId>onap-sdc-artifact-generator-api</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.sdc.common</groupId>
55 <artifactId>onap-sdc-artifact-generator-core</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 </dependencies>
amitjai42c920b2018-04-27 13:28:57 +053059
60</project>