Change HostTracker.IntegrationTest
[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/jacoco.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.sal.topology,
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                                 </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.4.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>