Bug 7795: Do not prescribe notification throttling mechanism
[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     <build>
18         <pluginManagement>
19             <plugins>
20                 <plugin>
21                     <groupId>org.apache.felix</groupId>
22                     <artifactId>maven-bundle-plugin</artifactId>
23                     <version>${bundle.plugin.version}</version>
24                     <extensions>true</extensions>
25                     <configuration>
26                         <instructions>
27                             <Bundle-Name>org.opendaylight.controller.sal-clustering-it-model</Bundle-Name>
28                             <Import-Package>*</Import-Package>
29                         </instructions>
30                     </configuration>
31                 </plugin>
32             </plugins>
33         </pluginManagement>
34     </build>
35     <dependencies>
36         <dependency>
37             <groupId>org.opendaylight.mdsal.model</groupId>
38             <artifactId>ietf-inet-types-2013-07-15</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal.model</groupId>
42             <artifactId>ietf-yang-types-20130715</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal.model</groupId>
46             <artifactId>yang-ext</artifactId>
47         </dependency>
48     </dependencies>
49 </project>