85f3ca857b31d5b89d2078d3abe3780944b8663b
[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   <scm>
16     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
17     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
18     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
19   </scm>
20
21   <properties>
22     <!-- Sonar properties using jacoco to retrieve integration test results -->
23     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
24     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
25     <sonar.jacoco.reportpath>target/jacoco.exec</sonar.jacoco.reportpath>
26     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
27     <sonar.language>java</sonar.language>
28   </properties>
29
30   <build>
31     <pluginManagement>
32       <plugins>
33         <plugin>
34           <groupId>org.jacoco</groupId>
35           <artifactId>jacoco-maven-plugin</artifactId>
36           <version>${jacoco.version}</version>
37         </plugin>
38       </plugins>
39     </pluginManagement>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <version>${bundle.plugin.version}</version>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Export-Package>
49             </Export-Package>
50             <Import-Package>
51               org.opendaylight.controller.sal.core,
52               org.opendaylight.controller.sal.utils,
53               org.opendaylight.controller.sal.topology,
54               org.opendaylight.controller.sal.packet,
55               org.opendaylight.controller.hosttracker,
56               org.opendaylight.controller.topologymanager,
57               org.opendaylight.controller.sal.packet.address,
58               org.opendaylight.controller.switchmanager,
59               org.opendaylight.controller.clustering.services,
60               org.opendaylight.controller.hosttracker.hostAware,
61               javax.xml.bind.annotation,
62               javax.xml.bind,
63               org.apache.felix.dm,
64               org.apache.commons.lang3.builder,
65               org.osgi.service.component,
66               org.slf4j,
67               org.eclipse.osgi.framework.console,
68               org.osgi.framework
69             </Import-Package>
70             <Bundle-Activator>
71               org.opendaylight.controller.hosttracker.internal.Activator
72             </Bundle-Activator>
73             <Service-Component>
74             </Service-Component>
75           </instructions>
76           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.jacoco</groupId>
81         <artifactId>jacoco-maven-plugin</artifactId>
82         <configuration>
83           <includes>org.opendaylight.controller.*</includes>
84         </configuration>
85         <executions>
86           <execution>
87             <id>pre-test</id>
88             <goals>
89               <goal>prepare-agent</goal>
90             </goals>
91           </execution>
92           <execution>
93             <id>post-test</id>
94             <phase>test</phase>
95             <goals>
96               <goal>report</goal>
97             </goals>
98           </execution>
99         </executions>
100       </plugin>
101     </plugins>
102   </build>
103   <dependencies>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>topologymanager</artifactId>
107       <version>0.4.0-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>switchmanager</artifactId>
112       <version>0.5.0-SNAPSHOT</version>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>clustering.services</artifactId>
117       <version>0.4.0-SNAPSHOT</version>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.controller</groupId>
121       <artifactId>sal</artifactId>
122       <version>0.5.0-SNAPSHOT</version>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.controller</groupId>
126       <artifactId>hosttracker_new</artifactId>
127       <version>0.4.0-SNAPSHOT</version>
128     </dependency>
129   </dependencies>
130 </project>