Remove unused dependency
[netconf.git] / netconf / netconf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>2.0.8-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-util</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <!-- compile dependencies -->
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>netconf-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>netconf-mapping-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>io.netty</groupId>
39       <artifactId>netty-transport</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>mockito-configuration</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-model-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-data-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-data-impl</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-data-codec-xml</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.osgi</groupId>
67       <artifactId>osgi.cmpn</artifactId>
68     </dependency>
69
70     <dependency>
71       <groupId>org.xmlunit</groupId>
72       <artifactId>xmlunit-legacy</artifactId>
73       <scope>test</scope>
74     </dependency>
75    <dependency>
76       <groupId>org.opendaylight.mdsal</groupId>
77       <artifactId>mdsal-binding-generator</artifactId>
78       <scope>test</scope>
79     </dependency>
80    <dependency>
81       <groupId>org.opendaylight.mdsal</groupId>
82       <artifactId>mdsal-binding-runtime-spi</artifactId>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.felix</groupId>
91         <artifactId>maven-bundle-plugin</artifactId>
92       </plugin>
93       <plugin>
94         <groupId>org.codehaus.mojo</groupId>
95         <artifactId>build-helper-maven-plugin</artifactId>
96         <executions>
97           <execution>
98             <id>attach-artifacts</id>
99             <goals>
100               <goal>attach-artifact</goal>
101             </goals>
102             <phase>package</phase>
103             <configuration>
104               <artifacts>
105                 <artifact>
106                   <file>${project.build.directory}/classes/netconf.cfg</file>
107                   <type>cfg</type>
108                   <classifier>config</classifier>
109                 </artifact>
110               </artifacts>
111             </configuration>
112           </execution>
113         </executions>
114       </plugin>
115       <plugin>
116         <artifactId>maven-jar-plugin</artifactId>
117         <executions>
118           <execution>
119             <goals>
120               <goal>test-jar</goal>
121             </goals>
122           </execution>
123         </executions>
124       </plugin>
125       <plugin>
126         <artifactId>maven-source-plugin</artifactId>
127         <executions>
128           <execution>
129             <goals>
130               <goal>test-jar-no-fork</goal>
131             </goals>
132           </execution>
133         </executions>
134       </plugin>
135     </plugins>
136   </build>
137
138 </project>