Merge "Fixed validation bug of YANG import statement"
[controller.git] / opendaylight / forwardingrulesmanager / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>forwardingrulesmanager.implementation</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>2.3.6</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Include-Resource>
27             </Include-Resource>
28             <Export-Package>
29             </Export-Package>
30             <Import-Package>
31                       org.opendaylight.controller.clustering.services,
32                       org.opendaylight.controller.configuration,
33               org.opendaylight.controller.hosttracker,
34               org.opendaylight.controller.hosttracker.hostAware,
35               org.opendaylight.controller.switchmanager,
36               org.opendaylight.controller.sal.action,
37               org.opendaylight.controller.sal.core,
38               org.opendaylight.controller.sal.flowprogrammer,
39               org.opendaylight.controller.sal.match,
40                           org.opendaylight.controller.sal.utils,
41               org.opendaylight.controller.sal.packet,
42                           org.opendaylight.controller.forwardingrulesmanager,
43               javax.xml.bind.annotation,
44               javax.xml.bind,
45               org.apache.felix.dm,
46               org.apache.commons.lang3.builder,
47               org.osgi.service.component,
48               org.slf4j,
49               org.eclipse.osgi.framework.console,
50                           org.osgi.framework
51             </Import-Package>
52         <Bundle-Activator>
53               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
54         </Bundle-Activator>
55             <Require-Bundle>
56               org.opendaylight.controller.hosttracker
57             </Require-Bundle>
58             <Service-Component>
59             </Service-Component>
60           </instructions>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65   <dependencies>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>hosttracker</artifactId>
69       <version>0.4.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>configuration</artifactId>
74       <version>0.4.0-SNAPSHOT</version>
75     </dependency>    
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>clustering.services</artifactId>
79       <version>0.4.0-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>switchmanager</artifactId>
84       <version>0.4.0-SNAPSHOT</version>
85     </dependency>
86         <dependency>
87                 <groupId>org.opendaylight.controller</groupId>
88                 <artifactId>sal</artifactId>
89                 <version>0.4.0-SNAPSHOT</version>
90         </dependency>
91         <dependency>
92                 <groupId>org.opendaylight.controller</groupId>
93                 <artifactId>forwardingrulesmanager</artifactId>
94                 <version>0.4.0-SNAPSHOT</version>
95         </dependency>
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <version>4.8.1</version>
100       <scope>test</scope>
101     </dependency>
102   </dependencies>
103 </project>