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