Added distribution management to archetypes/ root pom
[controller.git] / opendaylight / forwarding / staticrouting / 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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>forwarding.staticrouting</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Import-Package>
25               org.opendaylight.controller.sal.utils,
26               org.opendaylight.controller.sal.core,
27               org.opendaylight.controller.configuration,
28               org.opendaylight.controller.forwardingrulesmanager,
29               org.opendaylight.controller.hosttracker,
30               org.opendaylight.controller.hosttracker.hostAware,
31               org.opendaylight.controller.clustering.services,
32               org.opendaylight.controller.sal.packet,
33               org.opendaylight.controller.sal.routing,
34               org.opendaylight.controller.topologymanager,
35               org.eclipse.osgi.framework.console,
36               org.osgi.framework,
37               org.slf4j,
38               org.apache.felix.dm,
39               org.apache.commons.lang3.builder
40             </Import-Package>
41             <Export-Package>
42               org.opendaylight.controller.forwarding.staticrouting
43             </Export-Package>
44             <Bundle-Activator>
45               org.opendaylight.controller.forwarding.staticrouting.internal.Activator
46             </Bundle-Activator>
47           </instructions>
48           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
49         </configuration>
50       </plugin>
51     </plugins>
52   </build>
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>topologymanager</artifactId>
57       <version>0.4.0-SNAPSHOT</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>forwardingrulesmanager</artifactId>
62       <version>0.4.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>hosttracker</artifactId>
67       <version>0.4.0-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>configuration</artifactId>
72       <version>0.4.0-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>junit</groupId>
76       <artifactId>junit</artifactId>
77       <version>4.8.1</version>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal</artifactId>
83       <version>0.5.0-SNAPSHOT</version>
84     </dependency>
85   </dependencies>
86 </project>