Fix duplicate dependency declarations
[controller.git] / opendaylight / netconf / netconf-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
4   This program and the accompanying materials are made available under the
5   terms of the Eclipse Public License v1.0 which accompanies this distribution,
6   and is available at http://www.eclipse.org/legal/epl-v10.html -->
7 <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/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>netconf-subsystem</artifactId>
13     <version>0.4.0-SNAPSHOT</version>
14   </parent>
15   <artifactId>netconf-cli</artifactId>
16   <packaging>jar</packaging>
17   <name>${project.artifactId}</name>
18
19   <!--
20   <properties>
21     <checkstyle.skip>true</checkstyle.skip>
22   </properties> -->
23
24   <dependencies>
25     <dependency>
26       <groupId>ch.qos.logback</groupId>
27       <artifactId>logback-classic</artifactId>
28       <!--TODO configure properly -->
29     </dependency>
30     <dependency>
31       <groupId>jline</groupId>
32       <artifactId>jline</artifactId>
33       <version>2.11</version>
34     </dependency>
35     <dependency>
36       <groupId>net.sourceforge.argparse4j</groupId>
37       <artifactId>argparse4j</artifactId>
38       <version>0.4.3</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-core-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>sal-netconf-connector</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>mockito-configuration</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-data-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>yang-model-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>yang-parser-impl</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-data-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>yang-common</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>netconf-client</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-binding</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>com.google.guava</groupId>
82       <artifactId>guava</artifactId>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-jar-plugin</artifactId>
91         <configuration>
92           <archive>
93             <manifest>
94               <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
95             </manifest>
96           </archive>
97         </configuration>
98       </plugin>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-shade-plugin</artifactId>
102         <configuration></configuration>
103         <executions>
104           <execution>
105             <goals>
106               <goal>shade</goal>
107             </goals>
108             <phase>package</phase>
109             <configuration>
110               <transformers>
111                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
112                   <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
113                 </transformer>
114               </transformers>
115               <shadedArtifactAttached>true</shadedArtifactAttached>
116               <shadedClassifierName>executable</shadedClassifierName>
117             </configuration>
118           </execution>
119         </executions>
120       </plugin>
121     </plugins>
122   </build>
123 </project>