Merge "BUG 932 - Swagger HTTP POST contains incorrect object"
[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.2.5-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>${project.groupId}</groupId>
36             <artifactId>netconf-netty-util</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>commons.logback_settings</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>config-netconf-connector</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>netconf-connector-config</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>logback-config</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>mockito-configuration</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.slf4j</groupId>
60             <artifactId>slf4j-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>xmlunit</groupId>
64             <artifactId>xmlunit</artifactId>
65         </dependency>
66
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>config-util</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>netconf-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>netconf-client</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>netconf-impl</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>netconf-mapping-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>netconf-monitoring</artifactId>
90         </dependency>
91
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>netconf-ssh</artifactId>
95         </dependency>
96
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>netty-config-api</artifactId>
100         </dependency>
101
102     </dependencies>
103
104     <build>
105         <plugins>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-shade-plugin</artifactId>
109                 <configuration></configuration>
110                 <executions>
111                     <execution>
112                         <goals>
113                             <goal>shade</goal>
114                         </goals>
115                         <phase>package</phase>
116                         <configuration>
117                             <!-- TODO investigate why jar fails without this filter-->
118                             <filters>
119                                 <filter>
120                                     <artifact>*:*</artifact>
121                                     <excludes>
122                                         <exclude>META-INF/*.SF</exclude>
123                                         <exclude>META-INF/*.DSA</exclude>
124                                         <exclude>META-INF/*.RSA</exclude>
125                                     </excludes>
126                                 </filter>
127                             </filters>
128                             <transformers>
129                                 <transformer
130                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
131                                     <mainClass>org.opendaylight.controller.netconf.test.tool.Main</mainClass>
132                                 </transformer>
133                             </transformers>
134                             <shadedArtifactAttached>true</shadedArtifactAttached>
135                             <shadedClassifierName>executable</shadedClassifierName>
136                         </configuration>
137                     </execution>
138                 </executions>
139             </plugin>
140         </plugins>
141     </build>
142
143 </project>