BUG 2302 : odl-clustering-test-app should not be part of the odl-restconf-all feature set
[controller.git] / opendaylight / forwardingrulesmanager / implementation / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>forwardingrulesmanager.implementation</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>equinoxSDK381</groupId>
17       <artifactId>org.apache.felix.gogo.runtime</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>clustering.services</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>configuration</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>connectionmanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>containermanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>forwardingrulesmanager</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal.connection</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>switchmanager</artifactId>
50     </dependency>
51   </dependencies>
52
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58         <extensions>true</extensions>
59         <configuration>
60           <instructions>
61             <Include-Resource></Include-Resource>
62             <Export-Package>org.opendaylight.controller.forwardingrulesmanager.implementation.data</Export-Package>
63             <Import-Package>org.opendaylight.controller.clustering.services,
64               org.opendaylight.controller.configuration,
65               org.opendaylight.controller.containermanager,
66               org.opendaylight.controller.switchmanager,
67               org.opendaylight.controller.sal.action,
68               org.opendaylight.controller.sal.core,
69               org.opendaylight.controller.sal.flowprogrammer,
70               org.opendaylight.controller.sal.match,
71               org.opendaylight.controller.sal.utils,
72               org.opendaylight.controller.sal.packet,
73               org.opendaylight.controller.sal.connection,
74               org.opendaylight.controller.forwardingrulesmanager,
75               org.opendaylight.controller.connectionmanager,
76               javax.xml.bind.annotation,
77               javax.xml.bind,
78               org.apache.felix.dm,
79               org.apache.felix.service.command,
80               org.osgi.service.component,
81               org.slf4j,
82               org.osgi.framework</Import-Package>
83             <Bundle-Activator>org.opendaylight.controller.forwardingrulesmanager.internal.Activator</Bundle-Activator>
84             <Require-Bundle>org.opendaylight.controller.hosttracker</Require-Bundle>
85             <Service-Component></Service-Component>
86           </instructions>
87           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92   <scm>
93     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
94     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
95     <tag>HEAD</tag>
96     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
97   </scm>
98 </project>