Merge changes I393151af,I0a302cde
[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.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>forwardingrulesmanager.implementation</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Include-Resource>
31             </Include-Resource>
32             <Export-Package>
33               org.opendaylight.controller.forwardingrulesmanager.implementation.data
34             </Export-Package>
35             <Import-Package>
36               org.opendaylight.controller.clustering.services,
37               org.opendaylight.controller.configuration,
38               org.opendaylight.controller.containermanager,
39               org.opendaylight.controller.switchmanager,
40               org.opendaylight.controller.sal.action,
41               org.opendaylight.controller.sal.core,
42               org.opendaylight.controller.sal.flowprogrammer,
43               org.opendaylight.controller.sal.match,
44               org.opendaylight.controller.sal.utils,
45               org.opendaylight.controller.sal.packet,
46               org.opendaylight.controller.sal.connection,
47               org.opendaylight.controller.forwardingrulesmanager,
48               org.opendaylight.controller.connectionmanager,
49               javax.xml.bind.annotation,
50               javax.xml.bind,
51               org.apache.felix.dm,
52               org.apache.felix.service.command,
53               org.osgi.service.component,
54               org.slf4j,
55               org.osgi.framework
56             </Import-Package>
57             <Bundle-Activator>
58               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
59             </Bundle-Activator>
60             <Require-Bundle>
61               org.opendaylight.controller.hosttracker
62             </Require-Bundle>
63             <Service-Component>
64             </Service-Component>
65           </instructions>
66           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71   <dependencies>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>configuration</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>clustering.services</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>switchmanager</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal.connection</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>forwardingrulesmanager</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>equinoxSDK381</groupId>
98       <artifactId>org.apache.felix.gogo.runtime</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>connectionmanager</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>containermanager</artifactId>
107     </dependency>
108   </dependencies>
109 </project>