Stop creating new Boolean, move to use valueOf method
[controller.git] / opendaylight / hosttracker / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12   <artifactId>hosttracker.implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <scm>
16     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
17     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
18     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
19   </scm>
20
21   <properties>
22     <!-- Sonar properties using jacoco to retrieve integration test results -->
23     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
24     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
25     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
26     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
27     <sonar.language>java</sonar.language>
28   </properties>
29
30   <build>
31     <pluginManagement>
32       <plugins>
33         <plugin>
34           <groupId>org.jacoco</groupId>
35           <artifactId>jacoco-maven-plugin</artifactId>
36           <version>${jacoco.version}</version>
37         </plugin>
38       </plugins>
39     </pluginManagement>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <version>2.3.6</version>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Export-Package>
49             </Export-Package>
50             <Import-Package>
51               org.opendaylight.controller.sal.core,
52               org.opendaylight.controller.sal.utils,
53               org.opendaylight.controller.sal.topology,
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>connectionmanager</artifactId>
106         <version>0.1.0-SNAPSHOT</version>
107       </dependency>
108       <dependency>
109         <groupId>org.opendaylight.controller</groupId>
110         <artifactId>connectionmanager.implementation</artifactId>
111         <version>0.1.0-SNAPSHOT</version>
112       </dependency>
113       <dependency>
114         <groupId>org.opendaylight.controller</groupId>
115         <artifactId>sal.connection</artifactId>
116         <version>0.1.0-SNAPSHOT</version>
117       </dependency>
118       <dependency>
119         <groupId>org.opendaylight.controller</groupId>
120         <artifactId>sal.connection.implementation</artifactId>
121         <version>0.1.0-SNAPSHOT</version>
122       </dependency>
123     <dependency>
124       <groupId>org.opendaylight.controller</groupId>
125       <artifactId>topologymanager</artifactId>
126       <version>0.4.0-SNAPSHOT</version>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.controller</groupId>
130       <artifactId>switchmanager</artifactId>
131       <version>0.5.0-SNAPSHOT</version>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.controller</groupId>
135       <artifactId>clustering.services</artifactId>
136       <version>0.4.0-SNAPSHOT</version>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.controller</groupId>
140       <artifactId>sal</artifactId>
141       <version>0.5.0-SNAPSHOT</version>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.controller</groupId>
145       <artifactId>hosttracker</artifactId>
146       <version>0.4.0-SNAPSHOT</version>
147     </dependency>
148   </dependencies>
149 </project>