Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / hosttracker_new / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12   <artifactId>hosttracker_new.implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <properties>
17     <!-- Sonar properties using jacoco to retrieve integration test results -->
18     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
19     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
20     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
21     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
22     <sonar.language>java</sonar.language>
23   </properties>
24
25   <build>
26     <pluginManagement>
27       <plugins>
28         <plugin>
29           <groupId>org.jacoco</groupId>
30           <artifactId>jacoco-maven-plugin</artifactId>
31           <version>0.5.3.201107060350</version>
32         </plugin>
33       </plugins>
34     </pluginManagement>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>2.3.6</version>
40         <extensions>true</extensions>
41         <configuration>
42           <instructions>
43             <Export-Package>
44             </Export-Package>
45             <Import-Package>
46               org.opendaylight.controller.sal.core,
47               org.opendaylight.controller.sal.utils,
48               org.opendaylight.controller.sal.topology,
49               org.opendaylight.controller.sal.packet,
50               org.opendaylight.controller.hosttracker,
51               org.opendaylight.controller.topologymanager,
52               org.opendaylight.controller.sal.packet.address,
53               org.opendaylight.controller.switchmanager,
54               org.opendaylight.controller.clustering.services,
55               org.opendaylight.controller.hosttracker.hostAware,
56               javax.xml.bind.annotation,
57               javax.xml.bind,
58               org.apache.felix.dm,
59               org.apache.commons.lang3.builder,
60               org.osgi.service.component,
61               org.slf4j,
62               org.eclipse.osgi.framework.console,
63               org.osgi.framework
64             </Import-Package>
65             <Bundle-Activator>
66               org.opendaylight.controller.hosttracker.internal.Activator
67             </Bundle-Activator>
68             <Service-Component>
69             </Service-Component>
70           </instructions>
71           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.jacoco</groupId>
76         <artifactId>jacoco-maven-plugin</artifactId>
77         <configuration>
78           <includes>org.opendaylight.controller.*</includes>
79         </configuration>
80         <executions>
81           <execution>
82             <id>pre-test</id>
83             <goals>
84               <goal>prepare-agent</goal>
85             </goals>
86           </execution>
87           <execution>
88             <id>post-test</id>
89             <phase>test</phase>
90             <goals>
91               <goal>report</goal>
92             </goals>
93           </execution>
94         </executions>
95       </plugin>
96     </plugins>
97   </build>
98   <dependencies>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>topologymanager</artifactId>
102       <version>0.4.0-SNAPSHOT</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>switchmanager</artifactId>
107       <version>0.4.0-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>clustering.services</artifactId>
112       <version>0.4.0-SNAPSHOT</version>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>sal</artifactId>
117       <version>0.5.0-SNAPSHOT</version>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.controller</groupId>
121       <artifactId>hosttracker_new</artifactId>
122       <version>0.4.0-SNAPSHOT</version>
123     </dependency>
124   </dependencies>
125 </project>