e9edadb1f5564ff6cf645f6ca581cf435de50995
[packetcable.git] / protocol_plugins.packetcable / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.6.0-SNAPSHOT</version>
9   </parent>
10   <groupId>org.opendaylight.packetcable</groupId>
11   <artifactId>protocol_plugins.packetcable</artifactId>
12   <version>0.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <artifactId>maven-checkstyle-plugin</artifactId>
19         <configuration>
20           <skip>true</skip>
21         </configuration>
22       </plugin>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>2.4.0</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Import-Package> org.opendaylight.controller.sal.packet,
31               org.opendaylight.controller.sal.action,
32               org.opendaylight.controller.sal.discovery,
33               org.opendaylight.controller.sal.topology,
34               org.opendaylight.controller.sal.core,
35               org.opendaylight.controller.sal.flowprogrammer,
36               org.opendaylight.controller.sal.reader,
37               org.opendaylight.controller.sal.inventory,
38               org.opendaylight.controller.sal.match,
39               org.opendaylight.controller.sal.utils,
40               org.apache.commons.lang3.builder,
41               org.apache.commons.lang3.tuple, org.apache.felix.dm,
42               org.slf4j, org.eclipse.osgi.framework.console,
43               org.osgi.framework
44             </Import-Package>
45             <Bundle-Activator>org.opendaylight.controller.protocol_plugin.packetcable.internal.Activator</Bundle-Activator>
46           </instructions>
47           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal</artifactId>
56       <version>0.10.0-SNAPSHOT</version>
57     </dependency>
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61     </dependency>
62     <dependency>
63   <groupId>javax.sip</groupId>
64 <artifactId>jain-sip-ri</artifactId>
65 <version>1.2.158</version>
66 </dependency>
67 <dependency>
68 <groupId>commons-primitives</groupId>
69 <artifactId>commons-primitives</artifactId>
70 <version>20041207.202534</version>
71 </dependency>
72 </dependencies>
73 </project>