Merge "Enhancement in switch configuration"
[controller.git] / opendaylight / hosttracker / 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.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.hosttracker,
50               org.opendaylight.controller.topologymanager,
51               org.opendaylight.controller.sal.packet.address,
52               org.opendaylight.controller.switchmanager,
53               org.opendaylight.controller.clustering.services,
54               org.opendaylight.controller.hosttracker.hostAware,
55               javax.xml.bind.annotation,
56               javax.xml.bind,
57               org.apache.felix.dm,
58               org.apache.commons.lang3.builder,
59               org.osgi.service.component,
60               org.slf4j,
61               org.eclipse.osgi.framework.console,
62               org.osgi.framework
63             </Import-Package>
64             <Bundle-Activator>
65               org.opendaylight.controller.hosttracker.internal.Activator
66             </Bundle-Activator>
67             <Service-Component>
68             </Service-Component>
69           </instructions>
70           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
71         </configuration>
72       </plugin>
73       <plugin>
74         <groupId>org.jacoco</groupId>
75         <artifactId>jacoco-maven-plugin</artifactId>
76         <configuration>
77           <includes>org.opendaylight.controller.*</includes>
78         </configuration>
79         <executions>
80           <execution>
81             <id>pre-test</id>
82             <goals>
83               <goal>prepare-agent</goal>
84             </goals>
85           </execution>
86           <execution>
87             <id>post-test</id>
88             <phase>test</phase>
89             <goals>
90               <goal>report</goal>
91             </goals>
92           </execution>
93         </executions>
94       </plugin>
95     </plugins>
96   </build>
97   <dependencies>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>topologymanager</artifactId>
101       <version>0.4.0-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller</groupId>
105       <artifactId>switchmanager</artifactId>
106       <version>0.5.0-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>clustering.services</artifactId>
111       <version>0.4.0-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.controller</groupId>
115       <artifactId>sal</artifactId>
116       <version>0.5.0-SNAPSHOT</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>hosttracker</artifactId>
121       <version>0.4.0-SNAPSHOT</version>
122     </dependency>
123   </dependencies>
124 </project>