78c4ae4160f26c7e40f026353c6a5dcd614c98a7
[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.1-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>hosttracker.implementation</artifactId>
11   <version>0.5.1-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.hosttracker,
52               org.opendaylight.controller.topologymanager,
53               org.opendaylight.controller.sal.packet.address,
54               org.opendaylight.controller.switchmanager,
55               org.opendaylight.controller.clustering.services,
56               org.opendaylight.controller.hosttracker.hostAware,
57               javax.xml.bind.annotation,
58               javax.xml.bind,
59               org.apache.felix.dm,
60               org.apache.commons.lang3.builder,
61               org.osgi.service.component,
62               org.slf4j,
63               org.eclipse.osgi.framework.console,
64               org.osgi.framework
65             </Import-Package>
66             <Bundle-Activator>
67               org.opendaylight.controller.hosttracker.internal.Activator
68             </Bundle-Activator>
69             <Service-Component>
70             </Service-Component>
71           </instructions>
72           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.jacoco</groupId>
77         <artifactId>jacoco-maven-plugin</artifactId>
78         <configuration>
79           <includes>org.opendaylight.controller.*</includes>
80         </configuration>
81         <executions>
82           <execution>
83             <id>pre-test</id>
84             <goals>
85               <goal>prepare-agent</goal>
86             </goals>
87           </execution>
88           <execution>
89             <id>post-test</id>
90             <phase>test</phase>
91             <goals>
92               <goal>report</goal>
93             </goals>
94           </execution>
95         </executions>
96       </plugin>
97     </plugins>
98   </build>
99   <dependencies>
100       <dependency>
101         <groupId>org.opendaylight.controller</groupId>
102         <artifactId>connectionmanager</artifactId>
103         <version>0.1.1-SNAPSHOT</version>
104       </dependency>
105       <dependency>
106         <groupId>org.opendaylight.controller</groupId>
107         <artifactId>connectionmanager.implementation</artifactId>
108         <version>0.1.1-SNAPSHOT</version>
109       </dependency>
110       <dependency>
111         <groupId>org.opendaylight.controller</groupId>
112         <artifactId>sal.connection</artifactId>
113         <version>0.1.1-SNAPSHOT</version>
114       </dependency>
115       <dependency>
116         <groupId>org.opendaylight.controller</groupId>
117         <artifactId>sal.connection.implementation</artifactId>
118         <version>0.1.1-SNAPSHOT</version>
119       </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>topologymanager</artifactId>
123       <version>0.4.1-SNAPSHOT</version>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.controller</groupId>
127       <artifactId>switchmanager</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.controller</groupId>
131       <artifactId>clustering.services</artifactId>
132       <version>0.5.0-SNAPSHOT</version>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>sal</artifactId>
137       <version>0.7.0-SNAPSHOT</version>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.controller</groupId>
141       <artifactId>hosttracker</artifactId>
142       <version>${hosttracker.version}</version>
143     </dependency>
144     <dependency>
145       <groupId>junit</groupId>
146       <artifactId>junit</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.controller</groupId>
150       <artifactId>commons.logback_settings</artifactId>
151     </dependency>
152   </dependencies>
153 </project>