c968f739737aeffd86602a0d1c493e5233089562
[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       <dependency>
85           <groupId>org.opendaylight.yangtools</groupId>
86           <artifactId>yang-model-api</artifactId>
87       </dependency>
88   </dependencies>
89
90   <build>
91     <plugins>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-jar-plugin</artifactId>
95         <configuration>
96           <archive>
97             <manifest>
98               <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
99             </manifest>
100           </archive>
101         </configuration>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-shade-plugin</artifactId>
106         <configuration></configuration>
107         <executions>
108           <execution>
109             <goals>
110               <goal>shade</goal>
111             </goals>
112             <phase>package</phase>
113             <configuration>
114               <transformers>
115                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
116                   <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
117                 </transformer>
118               </transformers>
119               <shadedArtifactAttached>true</shadedArtifactAttached>
120               <shadedClassifierName>executable</shadedClassifierName>
121             </configuration>
122           </execution>
123         </executions>
124       </plugin>
125     </plugins>
126   </build>
127 </project>