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