[SDC-29] catalog 1707 rebase commit pom fix.
[sdc.git] / common / openecomp-common-configuration-management / openecomp-configuration-management-cli / dependency-reduced-pom.xml
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-configuration-management</artifactId>
5     <groupId>org.openecomp.sdc.common</groupId>
6     <version>1.1.0-SNAPSHOT</version>
7     <relativePath>..</relativePath>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.openecomp.sdc.common</groupId>
11   <artifactId>openecomp-configuration-management-cli</artifactId>
12   <name>openecomp-configuration-management-cli</name>
13   <build>
14     <plugins>
15       <plugin>
16         <artifactId>maven-shade-plugin</artifactId>
17         <version>1.5</version>
18         <executions>
19           <execution>
20             <phase>package</phase>
21             <goals>
22               <goal>shade</goal>
23             </goals>
24             <configuration>
25               <transformers>
26                 <transformer>
27                   <mainClass>org.openecomp.config.gui.app.Configuration</mainClass>
28                 </transformer>
29               </transformers>
30             </configuration>
31           </execution>
32         </executions>
33       </plugin>
34     </plugins>
35   </build>
36   <dependencies>
37     <dependency>
38       <groupId>org.testng</groupId>
39       <artifactId>testng</artifactId>
40       <version>6.8.8</version>
41       <scope>test</scope>
42       <exclusions>
43         <exclusion>
44           <artifactId>bsh</artifactId>
45           <groupId>org.beanshell</groupId>
46         </exclusion>
47         <exclusion>
48           <artifactId>jcommander</artifactId>
49           <groupId>com.beust</groupId>
50         </exclusion>
51       </exclusions>
52     </dependency>
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <version>RELEASE</version>
57       <scope>test</scope>
58       <exclusions>
59         <exclusion>
60           <artifactId>hamcrest-core</artifactId>
61           <groupId>org.hamcrest</groupId>
62         </exclusion>
63       </exclusions>
64     </dependency>
65   </dependencies>
66 </project>
67