Release netconf
[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>5.0.4</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.opendaylight.netconf</groupId>
87       <artifactId>netconf-mapping-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.service.component.annotations</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.osgi</groupId>
95       <artifactId>org.osgi.service.metatype.annotations</artifactId>
96     </dependency>
97
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>mockito-configuration</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal</groupId>
104       <artifactId>mdsal-binding-generator</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.mdsal</groupId>
109       <artifactId>mdsal-binding-runtime-spi</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.netconf.model</groupId>
114       <artifactId>rfc6022</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.xmlunit</groupId>
119       <artifactId>xmlunit-legacy</artifactId>
120       <scope>test</scope>
121     </dependency>
122   </dependencies>
123
124   <build>
125     <plugins>
126       <plugin>
127         <groupId>org.apache.felix</groupId>
128         <artifactId>maven-bundle-plugin</artifactId>
129       </plugin>
130       <plugin>
131         <groupId>org.codehaus.mojo</groupId>
132         <artifactId>build-helper-maven-plugin</artifactId>
133         <executions>
134           <execution>
135             <id>attach-artifacts</id>
136             <goals>
137               <goal>attach-artifact</goal>
138             </goals>
139             <phase>package</phase>
140             <configuration>
141               <artifacts>
142                 <artifact>
143                   <file>${project.build.directory}/classes/netconf.cfg</file>
144                   <type>cfg</type>
145                   <classifier>config</classifier>
146                 </artifact>
147               </artifacts>
148             </configuration>
149           </execution>
150         </executions>
151       </plugin>
152       <plugin>
153         <artifactId>maven-jar-plugin</artifactId>
154         <executions>
155           <execution>
156             <goals>
157               <goal>test-jar</goal>
158             </goals>
159           </execution>
160         </executions>
161       </plugin>
162       <plugin>
163         <artifactId>maven-source-plugin</artifactId>
164         <executions>
165           <execution>
166             <goals>
167               <goal>test-jar-no-fork</goal>
168             </goals>
169           </execution>
170         </executions>
171       </plugin>
172     </plugins>
173   </build>
174
175 </project>