Bump versions by x.y.(z+1)
[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>1.6.4-SNAPSHOT</version>
17         <relativePath>../netconf-parent</relativePath>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>yanglib</artifactId>
22     <version>1.6.4-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.felix</groupId>
29                 <artifactId>maven-bundle-plugin</artifactId>
30                 <extensions>true</extensions>
31                 <configuration>
32                     <instructions>
33                         <Bundle-Name>YangLib</Bundle-Name>
34                     </instructions>
35                 </configuration>
36             </plugin>
37         </plugins>
38     </build>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
51             <artifactId>rfc7895</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-parser-impl</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-model-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-model-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.aaa.web</groupId>
67             <artifactId>web-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.aaa.web</groupId>
71             <artifactId>servlet-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.slf4j</groupId>
75             <artifactId>slf4j-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>commons-io</groupId>
79             <artifactId>commons-io</artifactId>
80             <scope>test</scope>
81         </dependency>
82     </dependencies>
83 </project>