Merge "Stop creating new Boolean, move to use valueOf method"
[controller.git] / opendaylight / forwardingrulesmanager / 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   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16   </scm>
17
18   <artifactId>forwardingrulesmanager.implementation</artifactId>
19   <version>0.4.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <!-- Sonar properties using jacoco to retrieve integration test results -->
24     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
25     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
26     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
27     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
28     <sonar.language>java</sonar.language>
29   </properties>
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>${bundle.plugin.version}</version>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Include-Resource>
49             </Include-Resource>
50             <Export-Package>
51               org.opendaylight.controller.forwardingrulesmanager.implementation.data
52             </Export-Package>
53             <Import-Package>
54               org.opendaylight.controller.clustering.services,
55               org.opendaylight.controller.configuration,
56               org.opendaylight.controller.hosttracker,
57               org.opendaylight.controller.hosttracker.hostAware,
58               org.opendaylight.controller.switchmanager,
59               org.opendaylight.controller.sal.action,
60               org.opendaylight.controller.sal.core,
61               org.opendaylight.controller.sal.flowprogrammer,
62               org.opendaylight.controller.sal.match,
63               org.opendaylight.controller.sal.utils,
64               org.opendaylight.controller.sal.packet,
65               org.opendaylight.controller.forwardingrulesmanager,
66               org.opendaylight.controller.connectionmanager,
67               javax.xml.bind.annotation,
68               javax.xml.bind,
69               org.apache.felix.dm,
70               org.apache.commons.lang3.builder,
71               org.osgi.service.component,
72               org.slf4j,
73               org.eclipse.osgi.framework.console,
74               org.osgi.framework
75             </Import-Package>
76             <Bundle-Activator>
77               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
78             </Bundle-Activator>
79             <Require-Bundle>
80               org.opendaylight.controller.hosttracker
81             </Require-Bundle>
82             <Service-Component>
83             </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>org.opendaylight.controller.*</includes>
93         </configuration>
94         <executions>
95           <execution>
96             <id>pre-test</id>
97             <goals>
98               <goal>prepare-agent</goal>
99             </goals>
100           </execution>
101           <execution>
102             <id>post-test</id>
103             <phase>test</phase>
104             <goals>
105               <goal>report</goal>
106             </goals>
107           </execution>
108         </executions>
109       </plugin>
110     </plugins>
111   </build>
112   <dependencies>
113     <dependency>
114       <groupId>org.opendaylight.controller</groupId>
115       <artifactId>hosttracker</artifactId>
116       <version>0.4.0-SNAPSHOT</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>configuration</artifactId>
121       <version>0.4.0-SNAPSHOT</version>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.controller</groupId>
125       <artifactId>clustering.services</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>sal</artifactId>
136       <version>0.5.0-SNAPSHOT</version>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.controller</groupId>
140       <artifactId>forwardingrulesmanager</artifactId>
141       <version>0.4.0-SNAPSHOT</version>
142     </dependency>
143     <dependency>
144       <groupId>junit</groupId>
145       <artifactId>junit</artifactId>
146       <version>4.8.1</version>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.controller</groupId>
151       <artifactId>connectionmanager</artifactId>
152       <version>0.1.0-SNAPSHOT</version>
153     </dependency>
154   </dependencies>
155 </project>