Bump versions for Lithium
[yangtools.git] / yang / yang-data-composite-node / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4         This program and the accompanying materials are made available under the
5         terms of the Eclipse Public License v1.0 which accompanies this distribution,
6         and is available at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10         <parent>
11                 <groupId>org.opendaylight.yangtools</groupId>
12                 <artifactId>yangtools-parent</artifactId>
13                 <version>0.7.0-SNAPSHOT</version>
14                 <relativePath>/../../common/parent/pom.xml</relativePath>
15         </parent>
16
17         <modelVersion>4.0.0</modelVersion>
18         <artifactId>yang-data-composite-node</artifactId>
19         <name>${project.artifactId}</name>
20         <description>${project.artifactId}</description>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>yang-data-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>yang-data-impl</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>yang-model-api</artifactId>
35         </dependency>
36         <dependency>
37           <groupId>junit</groupId>
38           <artifactId>junit</artifactId>
39           <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>yang-parser-impl</artifactId>
44             <scope>test</scope>
45         </dependency>
46     </dependencies>
47
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.apache.felix</groupId>
52         <artifactId>maven-bundle-plugin</artifactId>
53         <extensions>true</extensions>
54         <configuration>
55           <instructions>
56             <Bundle-Name>Composite node Normalized node transformator</Bundle-Name>
57             <Import-Package>*</Import-Package>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64 </project>