Bug 2669: Use slf4j Logger instead of akka LoggingAdapter
[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.3.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-data-composite-node</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>yang-model-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-parser-impl</artifactId>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-jar-plugin</artifactId>
75         <configuration>
76           <archive>
77             <manifest>
78               <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
79             </manifest>
80           </archive>
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.apache.maven.plugins</groupId>
85         <artifactId>maven-shade-plugin</artifactId>
86         <configuration></configuration>
87         <executions>
88           <execution>
89             <goals>
90               <goal>shade</goal>
91             </goals>
92             <phase>package</phase>
93             <configuration>
94               <transformers>
95                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
96                   <mainClass>org.opendaylight.controller.netconf.cli.Main</mainClass>
97                 </transformer>
98               </transformers>
99               <shadedArtifactAttached>true</shadedArtifactAttached>
100               <shadedClassifierName>executable</shadedClassifierName>
101             </configuration>
102           </execution>
103         </executions>
104       </plugin>
105     </plugins>
106   </build>
107 </project>