Clean-up pom.xml layout
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.mdsal</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>0.10.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.controller.samples</groupId>
13     <version>1.5.0-SNAPSHOT</version>
14     <artifactId>clustering-it-model</artifactId>
15     <packaging>bundle</packaging>
16
17     <dependencyManagement>
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.mdsal.model</groupId>
21                 <artifactId>mdsal-model-artifacts</artifactId>
22                 <version>0.10.0-SNAPSHOT</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26         </dependencies>
27     </dependencyManagement>
28
29     <dependencies>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>yang-binding</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-common</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal.model</groupId>
40             <artifactId>ietf-inet-types-2013-07-15</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal.model</groupId>
44             <artifactId>ietf-yang-types-20130715</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal.model</groupId>
48             <artifactId>yang-ext</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <version>${bundle.plugin.version}</version>
58                 <extensions>true</extensions>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Name>org.opendaylight.controller.sal-clustering-it-model</Bundle-Name>
62                         <Import-Package>*</Import-Package>
63                     </instructions>
64                 </configuration>
65             </plugin>
66         </plugins>
67     </build>
68 </project>