Resubmitted with source code synchronized. Added integration test for hosttracker...
[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         <groupId>org.opendaylight.controller</groupId>
13         <artifactId>hosttracker.implementation</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <packaging>bundle</packaging>
16
17         <properties>
18                 <!-- Sonar properties using jacoco to retrieve integration test results -->
19                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
20                 <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
21                 <sonar.jacoco.Reportpath>target/jacobo.exec</sonar.jacoco.Reportpath>
22                 <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
23                 <sonar.language>java</sonar.language>
24         </properties>
25         
26         <build>
27             <pluginManagement>
28                         <plugins>
29                                 <plugin>
30                                         <groupId>org.jacoco</groupId>
31                                         <artifactId>jacoco-maven-plugin</artifactId>
32                                         <version>0.5.3.201107060350</version>
33                                 </plugin>
34                         </plugins>
35                 </pluginManagement>
36                 <plugins>
37                         <plugin>
38                                 <groupId>org.apache.felix</groupId>
39                                 <artifactId>maven-bundle-plugin</artifactId>
40                                 <version>2.3.6</version>
41                                 <extensions>true</extensions>
42                                 <configuration>
43                                         <instructions>
44                                                 <Export-Package>
45                                                 </Export-Package>
46                                                 <Import-Package>
47                                                         org.opendaylight.controller.sal.core,
48                                                         org.opendaylight.controller.sal.utils,
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                                 </configuration>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.jacoco</groupId>
74                                 <artifactId>jacoco-maven-plugin</artifactId>
75                             <configuration>
76                                 <includes>org.opendaylight.controller.*</includes>
77                             </configuration>
78                             <executions>
79                                 <execution>
80                                     <id>pre-test</id>
81                                     <goals>
82                                         <goal>prepare-agent</goal>
83                                     </goals>
84                                 </execution>
85                                 <execution>
86                                     <id>post-test</id>
87                                     <phase>test</phase>
88                                     <goals>
89                                         <goal>report</goal>
90                                     </goals>
91                                 </execution>
92                                 </executions>
93                         </plugin>
94                 </plugins>
95         </build>
96         <dependencies>
97                 <dependency>
98                         <groupId>org.opendaylight.controller</groupId>
99                         <artifactId>topologymanager</artifactId>
100                         <version>0.4.0-SNAPSHOT</version>
101                 </dependency>
102                 <dependency>
103                         <groupId>org.opendaylight.controller</groupId>
104                         <artifactId>switchmanager</artifactId>
105                         <version>0.4.0-SNAPSHOT</version>
106                 </dependency>
107                 <dependency>
108                         <groupId>org.opendaylight.controller</groupId>
109                         <artifactId>clustering.services</artifactId>
110                         <version>0.4.0-SNAPSHOT</version>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.opendaylight.controller</groupId>
114                         <artifactId>sal</artifactId>
115                         <version>0.4.0-SNAPSHOT</version>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.opendaylight.controller</groupId>
119                         <artifactId>hosttracker</artifactId>
120                         <version>0.4.0-SNAPSHOT</version>
121                 </dependency>
122         </dependencies>
123 </project>