Merge "BUG 720 - YANG leaf as JSON input *<*:* couldn't be saved"
[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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>hosttracker.implementation</artifactId>
11   <version>0.6.0-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         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Export-Package></Export-Package>
65             <Import-Package>org.opendaylight.controller.sal.core,
66               org.opendaylight.controller.sal.utils,
67               org.opendaylight.controller.sal.topology,
68               org.opendaylight.controller.hosttracker,
69               org.opendaylight.controller.topologymanager,
70               org.opendaylight.controller.sal.packet.address,
71               org.opendaylight.controller.switchmanager,
72               org.opendaylight.controller.clustering.services,
73               org.opendaylight.controller.hosttracker.hostAware,
74               javax.xml.bind.annotation,
75               javax.xml.bind,
76               org.apache.felix.dm,
77               org.apache.commons.lang3.builder,
78               org.osgi.service.component,
79               org.slf4j,
80               org.eclipse.osgi.framework.console,
81               org.osgi.framework</Import-Package>
82             <Bundle-Activator>org.opendaylight.controller.hosttracker.internal.Activator</Bundle-Activator>
83             <Service-Component></Service-Component>
84           </instructions>
85           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
86         </configuration>
87       </plugin>
88       <plugin>
89         <groupId>org.jacoco</groupId>
90         <artifactId>jacoco-maven-plugin</artifactId>
91         <configuration>
92           <includes>
93             <include>org.opendaylight.controller.*</include>
94           </includes>
95         </configuration>
96         <executions>
97           <execution>
98             <id>pre-test</id>
99             <goals>
100               <goal>prepare-agent</goal>
101             </goals>
102           </execution>
103           <execution>
104             <id>post-test</id>
105             <goals>
106               <goal>report</goal>
107             </goals>
108             <phase>test</phase>
109           </execution>
110         </executions>
111       </plugin>
112     </plugins>
113   </build>
114   <scm>
115     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
116     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
117     <tag>HEAD</tag>
118     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
119   </scm>
120 </project>