580afea5d3d652f7486ba0792893562869fea9a2
[yangtools.git] / integration-test / bug527-test-model / 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. This
4     program and the accompanying materials are made available under the terms of the
5     Eclipse Public License v1.0 which accompanies this distribution, and is available
6     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.6.2-SNAPSHOT</version>
14         <relativePath>/../../common/parent/pom.xml</relativePath>
15     </parent>
16
17     <modelVersion>4.0.0</modelVersion>
18     <artifactId>bug527-test-model</artifactId>
19     <name>${project.artifactId}</name>
20     <description>${project.artifactId}</description>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <artifactId>maven-jar-plugin</artifactId>
26             </plugin>
27             <plugin>
28                 <groupId>org.opendaylight.yangtools</groupId>
29                 <artifactId>yang-maven-plugin</artifactId>
30             </plugin>
31             <plugin>
32                 <groupId>org.apache.felix</groupId>
33                 <artifactId>maven-bundle-plugin</artifactId>
34                 <extensions>true</extensions>
35                 <configuration>
36                     <instructions>
37                         <Bundle-Name>org.opendaylight.yangtools.model.${project.artifactId}</Bundle-Name>
38                     </instructions>
39                 </configuration>
40             </plugin>
41         </plugins>
42     </build>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-binding</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-common</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools.model</groupId>
55             <artifactId>yang-ext</artifactId>
56         </dependency>
57     </dependencies>
58
59 </project>