Bump versions for Lithium
[yangtools.git] / yang / yang-data-operations / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>yangtools-parent</artifactId>
15         <version>0.7.0-SNAPSHOT</version>
16         <relativePath>/../../common/parent/pom.xml</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>yang-data-operations</artifactId>
21     <name>${project.artifactId}</name>
22     <description>${project.artifactId}</description>
23
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                         <Export-Package>
34                             org.opendaylight.yangtools.yang.data.operations
35                         </Export-Package>
36                         <Import-Package>
37                             *
38                         </Import-Package>
39                     </instructions>
40                 </configuration>
41             </plugin>
42         </plugins>
43     </build>
44
45     <dependencies>
46
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>yang-data-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>yang-model-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>yang-data-impl</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.google.guava</groupId>
61             <artifactId>guava</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>yang-parser-impl</artifactId>
71             <scope>test</scope>
72         </dependency>
73
74     </dependencies>
75 </project>