Added distribution management to archetypes/ root pom
[controller.git] / opendaylight / samples / simpleforwarding / 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>samples.simpleforwarding</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.forwardingrulesmanager,
28               org.opendaylight.controller.hosttracker,
29               org.opendaylight.controller.hosttracker.hostAware,
30               org.opendaylight.controller.switchmanager,
31               org.opendaylight.controller.clustering.services,
32               org.opendaylight.controller.sal.action,
33               org.opendaylight.controller.sal.flowprogrammer,
34               org.opendaylight.controller.sal.match,
35               org.opendaylight.controller.sal.packet,
36               org.opendaylight.controller.sal.routing,
37               org.opendaylight.controller.topologymanager,
38               org.apache.commons.lang3.builder,
39               org.junit;resolution:=optional,
40               org.slf4j,
41               org.apache.felix.dm
42             </Import-Package>
43             <Export-Package>
44               org.opendaylight.controller.samples.simpleforwarding
45             </Export-Package>
46             <Bundle-Activator>
47               org.opendaylight.controller.samples.simpleforwarding.internal.Activator
48             </Bundle-Activator>
49           </instructions>
50           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55   <dependencies>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>topologymanager</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>forwardingrulesmanager</artifactId>
64       <version>0.4.0-SNAPSHOT</version>
65     </dependency>
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>switchmanager</artifactId>
74       <version>0.5.0-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79       <version>4.8.1</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal</artifactId>
85       <version>0.5.0-SNAPSHOT</version>
86     </dependency>
87   </dependencies>
88 </project>