Basic fixes to make build work :)
[packetcable.git] / 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.4.2-SNAPSHOT</version>
9   </parent>
10   <groupId>org.opendaylight.packetcable</groupId>
11   <artifactId>protocol_plugins.packetcable</artifactId>
12   <version>0.5.1-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15     <pluginRepositories>
16     <!-- OpenDayLight Repo Mirror -->
17     <pluginRepository>
18       <id>opendaylight-mirror</id>
19       <name>opendaylight-mirror</name>
20       <url>http://nexus.opendaylight.org/content/groups/public/</url>
21       <snapshots>
22           <enabled>false</enabled>
23       </snapshots>
24       <releases>
25           <enabled>true</enabled>
26           <updatePolicy>never</updatePolicy>
27       </releases>
28     </pluginRepository>
29     <!-- OpenDayLight Snapshot artifact -->
30     <pluginRepository>
31       <id>opendaylight-snapshot</id>
32       <name>opendaylight-snapshot</name>
33       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
34       <snapshots>
35           <enabled>true</enabled>
36       </snapshots>
37       <releases>
38           <enabled>false</enabled>
39       </releases>
40     </pluginRepository>
41   </pluginRepositories>
42
43   <repositories>
44     <!-- OpenDayLight Repo Mirror -->
45     <repository>
46       <id>opendaylight-mirror</id>
47       <name>opendaylight-mirror</name>
48       <url>http://nexus.opendaylight.org/content/groups/public/</url>
49       <snapshots>
50           <enabled>false</enabled>
51       </snapshots>
52       <releases>
53           <enabled>true</enabled>
54           <updatePolicy>never</updatePolicy>
55       </releases>
56     </repository>
57     <!-- OpenDayLight Snapshot artifact -->
58     <repository>
59       <id>opendaylight-snapshot</id>
60       <name>opendaylight-snapshot</name>
61       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
62       <snapshots>
63           <enabled>true</enabled>
64       </snapshots>
65       <releases>
66           <enabled>false</enabled>
67       </releases>
68     </repository>
69   </repositories>
70   <build>
71     <plugins>
72       <plugin>
73         <artifactId>maven-checkstyle-plugin</artifactId>
74         <configuration>
75           <skip>true</skip>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <version>2.3.6</version>
82         <extensions>true</extensions>
83         <configuration>
84           <instructions>
85             <Import-Package> org.opendaylight.controller.sal.packet,
86               org.opendaylight.controller.sal.action,
87               org.opendaylight.controller.sal.discovery,
88               org.opendaylight.controller.sal.topology,
89               org.opendaylight.controller.sal.core,
90               org.opendaylight.controller.sal.flowprogrammer,
91               org.opendaylight.controller.sal.reader,
92               org.opendaylight.controller.sal.inventory,
93               org.opendaylight.controller.sal.match,
94               org.opendaylight.controller.sal.utils,
95               org.apache.commons.lang3.builder,
96               org.apache.commons.lang3.tuple, org.apache.felix.dm,
97               org.slf4j, org.eclipse.osgi.framework.console,
98               org.osgi.framework
99             </Import-Package>
100             <Bundle-Activator>org.opendaylight.controller.protocol_plugin.packetcable.internal.Activator</Bundle-Activator>
101           </instructions>
102           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
103         </configuration>
104       </plugin>
105     </plugins>
106   </build>
107   <dependencies>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>sal</artifactId>
111       <version>0.8.1-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>junit</groupId>
115       <artifactId>junit</artifactId>
116     </dependency>
117     <dependency>
118   <groupId>javax.sip</groupId>
119 <artifactId>jain-sip-ri</artifactId>
120 <version>1.2.158</version>
121 </dependency>
122 <dependency>
123 <groupId>commons-primitives</groupId>
124 <artifactId>commons-primitives</artifactId>
125 <version>20041207.202534</version>
126 </dependency>
127 </dependencies>
128 </project>