df1095c76d64adcaaa327207da772bb305f7d258
[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
13   <artifactId>forwardingrulesmanager.implementation</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <properties>
18     <!-- Sonar properties using jacoco to retrieve integration test results -->
19     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
20     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
21     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
22     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
23     <sonar.language>java</sonar.language>
24   </properties>
25   <build>
26     <pluginManagement>
27       <plugins>
28         <plugin>
29           <groupId>org.jacoco</groupId>
30           <artifactId>jacoco-maven-plugin</artifactId>
31           <version>0.5.3.201107060350</version>
32         </plugin>
33       </plugins>
34     </pluginManagement>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>2.3.6</version>
40         <extensions>true</extensions>
41         <configuration>
42           <instructions>
43             <Include-Resource>
44             </Include-Resource>
45             <Export-Package>
46             </Export-Package>
47             <Import-Package>
48               org.opendaylight.controller.clustering.services,
49               org.opendaylight.controller.configuration,
50               org.opendaylight.controller.hosttracker,
51               org.opendaylight.controller.hosttracker.hostAware,
52               org.opendaylight.controller.switchmanager,
53               org.opendaylight.controller.sal.action,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.flowprogrammer,
56               org.opendaylight.controller.sal.match,
57               org.opendaylight.controller.sal.utils,
58               org.opendaylight.controller.sal.packet,
59               org.opendaylight.controller.forwardingrulesmanager,
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.forwardingrulesmanager.internal.Activator
71             </Bundle-Activator>
72             <Require-Bundle>
73               org.opendaylight.controller.hosttracker
74             </Require-Bundle>
75             <Service-Component>
76             </Service-Component>
77           </instructions>
78           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.jacoco</groupId>
83         <artifactId>jacoco-maven-plugin</artifactId>
84         <configuration>
85           <includes>org.opendaylight.controller.*</includes>
86         </configuration>
87         <executions>
88           <execution>
89             <id>pre-test</id>
90             <goals>
91               <goal>prepare-agent</goal>
92             </goals>
93           </execution>
94           <execution>
95             <id>post-test</id>
96             <phase>test</phase>
97             <goals>
98               <goal>report</goal>
99             </goals>
100           </execution>
101         </executions>
102       </plugin>
103     </plugins>
104   </build>
105   <dependencies>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>hosttracker</artifactId>
109       <version>0.4.0-SNAPSHOT</version>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.controller</groupId>
113       <artifactId>configuration</artifactId>
114       <version>0.4.0-SNAPSHOT</version>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>clustering.services</artifactId>
119       <version>0.4.0-SNAPSHOT</version>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.controller</groupId>
123       <artifactId>switchmanager</artifactId>
124       <version>0.4.0-SNAPSHOT</version>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.controller</groupId>
128       <artifactId>sal</artifactId>
129       <version>0.5.0-SNAPSHOT</version>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.controller</groupId>
133       <artifactId>forwardingrulesmanager</artifactId>
134       <version>0.4.0-SNAPSHOT</version>
135     </dependency>
136     <dependency>
137       <groupId>junit</groupId>
138       <artifactId>junit</artifactId>
139       <version>4.8.1</version>
140       <scope>test</scope>
141     </dependency>
142   </dependencies>
143 </project>