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