fd0bf3d25b0ea58f40b73469cd6bc358a61c23e0
[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.controller</groupId>
7         <artifactId>mdsal-parent</artifactId>
8         <version>4.0.5-SNAPSHOT</version>
9         <relativePath>../../../parent</relativePath>
10     </parent>
11
12     <groupId>org.opendaylight.controller.samples</groupId>
13     <artifactId>clustering-it-model</artifactId>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
19             <artifactId>rfc6991-ietf-inet-types</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.mdsal.model</groupId>
23             <artifactId>yang-ext</artifactId>
24         </dependency>
25     </dependencies>
26
27     <build>
28         <pluginManagement>
29             <plugins>
30                 <plugin>
31                     <groupId>org.apache.felix</groupId>
32                     <artifactId>maven-bundle-plugin</artifactId>
33                     <extensions>true</extensions>
34                     <configuration>
35                         <instructions>
36                             <Bundle-Name>org.opendaylight.controller.sal-clustering-it-model</Bundle-Name>
37                         </instructions>
38                     </configuration>
39                 </plugin>
40             </plugins>
41         </pluginManagement>
42     </build>
43 </project>