Integrate netconf-mapping-api into netconf-server
[netconf.git] / protocol / 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>6.0.0-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>com.google.guava</groupId>
27       <artifactId>guava</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>io.netty</groupId>
31       <artifactId>netty-transport</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>concepts</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>yang-common</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>yang-data-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-data-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>rfc7952-data-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>rfc7952-data-util</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>rfc8528-data-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>rfc8528-data-util</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>yang-data-impl</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>yang-data-codec-xml</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-model-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>yang-model-util</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.netconf</groupId>
83       <artifactId>netconf-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.osgi</groupId>
87       <artifactId>org.osgi.service.component.annotations</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.service.metatype.annotations</artifactId>
92     </dependency>
93
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>mockito-configuration</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.mdsal</groupId>
100       <artifactId>mdsal-binding-generator</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.mdsal</groupId>
105       <artifactId>mdsal-binding-runtime-spi</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.netconf.model</groupId>
110       <artifactId>rfc6022</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.xmlunit</groupId>
115       <artifactId>xmlunit-legacy</artifactId>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.felix</groupId>
124         <artifactId>maven-bundle-plugin</artifactId>
125       </plugin>
126       <plugin>
127         <groupId>org.codehaus.mojo</groupId>
128         <artifactId>build-helper-maven-plugin</artifactId>
129         <executions>
130           <execution>
131             <id>attach-artifacts</id>
132             <goals>
133               <goal>attach-artifact</goal>
134             </goals>
135             <phase>package</phase>
136             <configuration>
137               <artifacts>
138                 <artifact>
139                   <file>${project.build.directory}/classes/netconf.cfg</file>
140                   <type>cfg</type>
141                   <classifier>config</classifier>
142                 </artifact>
143               </artifacts>
144             </configuration>
145           </execution>
146         </executions>
147       </plugin>
148       <plugin>
149         <artifactId>maven-jar-plugin</artifactId>
150         <executions>
151           <execution>
152             <goals>
153               <goal>test-jar</goal>
154             </goals>
155           </execution>
156         </executions>
157       </plugin>
158       <plugin>
159         <artifactId>maven-source-plugin</artifactId>
160         <executions>
161           <execution>
162             <goals>
163               <goal>test-jar-no-fork</goal>
164             </goals>
165           </execution>
166         </executions>
167       </plugin>
168     </plugins>
169   </build>
170
171 </project>