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.5.4-SNAPSHOT</version>
17         <relativePath>../netconf-parent</relativePath>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>yanglib</artifactId>
22     <version>1.5.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.controller</groupId>
43             <artifactId>sal-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.model</groupId>
51             <artifactId>rfc7895</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.mockito</groupId>
55             <artifactId>mockito-core</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-parser-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-model-util</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-model-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.aaa.web</groupId>
72             <artifactId>web-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.aaa.web</groupId>
76             <artifactId>servlet-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.slf4j</groupId>
80             <artifactId>slf4j-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>commons-io</groupId>
84             <artifactId>commons-io</artifactId>
85             <scope>test</scope>
86         </dependency>
87     </dependencies>
88 </project>