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