Bump versions to 5.0.2-SNAPSHOT
[netconf.git] / netconf / yanglib / 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"
10          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     <parent>
14         <groupId>org.opendaylight.netconf</groupId>
15         <artifactId>netconf-parent</artifactId>
16         <version>5.0.2-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>yanglib</artifactId>
21     <packaging>bundle</packaging>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28                 <extensions>true</extensions>
29                 <configuration>
30                     <instructions>
31                         <Bundle-Name>YangLib</Bundle-Name>
32                     </instructions>
33                 </configuration>
34             </plugin>
35         </plugins>
36     </build>
37
38     <dependencies>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-binding-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.google.guava</groupId>
45             <artifactId>guava</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
49             <artifactId>rfc8525</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-parser-impl</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>yang-repo-fs</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.aaa.web</groupId>
61             <artifactId>web-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.aaa.web</groupId>
65             <artifactId>servlet-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>commons-io</groupId>
69             <artifactId>commons-io</artifactId>
70             <scope>test</scope>
71         </dependency>
72     </dependencies>
73 </project>