2187ca0abc6703b8be6f7875cbc38fee65dfbc3b
[affinity.git] / affinity / 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
6   <parent>
7     <groupId>org.opendaylight.affinity</groupId>
8     <artifactId>affinityParent</artifactId>
9     <version>0.4.1-SNAPSHOT</version>
10     <relativePath>../..</relativePath>
11   </parent>
12
13   <groupId>org.opendaylight.affinity</groupId>
14   <artifactId>affinity.implementation</artifactId>
15   <version>0.4.1-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <build>
19     <pluginManagement>
20       <plugins>
21         <plugin>
22           <groupId>org.jacoco</groupId>
23           <artifactId>jacoco-maven-plugin</artifactId>
24           <version>0.5.3.201107060350</version>
25         </plugin>
26       </plugins>
27     </pluginManagement>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <version>2.3.6</version>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Import-Package>
37               org.opendaylight.controller.sal.common.util, 
38               org.opendaylight.affinity.affinity,
39               org.opendaylight.affinity.l2agent, 
40 <!--              org.opendaylight.affinity.nfchainagent, -->
41               org.opendaylight.controller.clustering.services,
42               org.opendaylight.controller.configuration,
43               org.opendaylight.controller.hosttracker,
44               org.opendaylight.controller.hosttracker.hostAware,
45               org.opendaylight.controller.sal.core,
46               org.opendaylight.controller.sal.utils,
47               org.opendaylight.controller.sal.packet,
48               org.opendaylight.controller.sal.inventory,
49               org.opendaylight.controller.sal.flowprogrammer, 
50               org.opendaylight.controller.forwardingrulesmanager, 
51               org.opendaylight.controller.sal.match,
52               org.opendaylight.controller.sal.action,
53               org.opendaylight.controller.switchmanager,
54               org.slf4j,
55               org.apache.felix.dm,
56               org.eclipse.osgi.framework.console,
57               org.osgi.framework,
58               javax.xml.bind.annotation,
59               org.apache.commons.lang3.builder
60             </Import-Package>
61             <Bundle-Activator>
62               org.opendaylight.affinity.affinity.internal.Activator
63             </Bundle-Activator>
64           </instructions>
65           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
66         </configuration>
67       </plugin>
68       <plugin>
69         <groupId>org.jacoco</groupId>
70         <artifactId>jacoco-maven-plugin</artifactId>
71         <configuration>
72           <includes>org.opendaylight.controller.*</includes>
73         </configuration>
74         <executions>
75           <execution>
76             <id>pre-test</id>
77             <goals>
78               <goal>prepare-agent</goal>
79             </goals>
80           </execution>
81           <execution>
82             <id>post-test</id>
83             <phase>test</phase>
84             <goals>
85               <goal>report</goal>
86             </goals>
87           </execution>
88         </executions>
89       </plugin>
90     </plugins>
91   </build>
92   <dependencies>
93     <dependency>
94       <groupId>junit</groupId>
95       <artifactId>junit</artifactId>
96       <version>${junit.version}</version>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>clustering.services</artifactId>
102       <version>0.5.0</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>configuration</artifactId>
107       <version>0.4.1</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>sal</artifactId>
112       <version>0.7.0</version>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>sal-common-util</artifactId>
117       <version>1.0</version>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.controller</groupId>
121       <artifactId>forwardingrulesmanager</artifactId>
122       <version>0.5.0</version>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.controller</groupId>
126       <artifactId>hosttracker</artifactId>
127       <version>0.5.1</version>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.affinity</groupId>
131       <artifactId>affinity</artifactId>
132       <version>0.4.1-SNAPSHOT</version>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.affinity</groupId>
136       <artifactId>l2agent</artifactId>
137       <version>0.4.1-SNAPSHOT</version>
138     </dependency>
139 <!---
140     <dependency>
141     <groupId>org.opendaylight.affinity</groupId>
142     <artifactId>model</artifactId>
143     <version>1.0-SNAPSHOT</version>
144     </dependency> 
145     <dependency>
146     <groupId>org.opendaylight.affinity</groupId>
147     <artifactId>nfchainagent</artifactId>
148     <version>0.4.1-SNAPSHOT</version>
149     </dependency> 
150     <dependency>
151     <groupId>org.opendaylight.yangtools.model</groupId>
152     <artifactId>ietf-inet-types</artifactId>
153     <version>2010.09.24-SNAPSHOT</version>
154     </dependency> -->
155   </dependencies>
156 </project>