Merge "BUG 1839 - HTTP delete of non existing data"
[controller.git] / opendaylight / netconf / netconf-testtool / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.controller</groupId>
16         <artifactId>netconf-subsystem</artifactId>
17         <version>0.3.0-SNAPSHOT</version>
18     </parent>
19
20     <artifactId>netconf-testtool</artifactId>
21     <name>${project.artifactId}</name>
22
23     <dependencies>
24         <dependency>
25             <groupId>net.sourceforge.argparse4j</groupId>
26             <artifactId>argparse4j</artifactId>
27             <version>0.4.3</version>
28         </dependency>
29         <dependency>
30             <groupId>ch.qos.logback</groupId>
31             <artifactId>logback-classic</artifactId>
32             <scope>compile</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.bouncycastle</groupId>
36             <artifactId>bcpkix-jdk15on</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.bouncycastle</groupId>
40             <artifactId>bcprov-jdk15on</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>netconf-netty-util</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>netconf-auth</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>commons.logback_settings</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>config-netconf-connector</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>netconf-connector-config</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>logback-config</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>mockito-configuration</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>xmlunit</groupId>
76             <artifactId>xmlunit</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>config-util</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>netconf-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller</groupId>
92             <artifactId>ietf-netconf-monitoring</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>netconf-client</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools.model</groupId>
100             <artifactId>ietf-yang-types-20130715</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools.model</groupId>
104             <artifactId>ietf-inet-types</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>netconf-impl</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>netconf-mapping-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>netconf-monitoring</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>${project.groupId}</groupId>
120             <artifactId>netconf-ssh</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>${project.groupId}</groupId>
124             <artifactId>netty-config-api</artifactId>
125         </dependency>
126
127     </dependencies>
128
129     <build>
130         <plugins>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-shade-plugin</artifactId>
134                 <configuration></configuration>
135                 <executions>
136                     <execution>
137                         <goals>
138                             <goal>shade</goal>
139                         </goals>
140                         <phase>package</phase>
141                         <configuration>
142                             <!-- TODO investigate why jar fails without this filter-->
143                             <filters>
144                                 <filter>
145                                     <artifact>*:*</artifact>
146                                     <excludes>
147                                         <exclude>META-INF/*.SF</exclude>
148                                         <exclude>META-INF/*.DSA</exclude>
149                                         <exclude>META-INF/*.RSA</exclude>
150                                     </excludes>
151                                 </filter>
152                             </filters>
153                             <transformers>
154                                 <transformer
155                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
156                                     <mainClass>org.opendaylight.controller.netconf.test.tool.Main</mainClass>
157                                 </transformer>
158                             </transformers>
159                             <shadedArtifactAttached>true</shadedArtifactAttached>
160                             <shadedClassifierName>executable</shadedClassifierName>
161                         </configuration>
162                     </execution>
163                 </executions>
164             </plugin>
165         </plugins>
166     </build>
167
168 </project>