d9faed36b9098fe94264a35639244e756e8ab493
[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   <groupId>org.opendaylight.controller</groupId>
14   <artifactId>forwardingrulesmanager.implementation</artifactId>
15   <version>0.4.0-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <properties>
19     <!-- Sonar properties using jacoco to retrieve integration test results -->
20     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
21     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
22     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
23     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
24     <sonar.language>java</sonar.language>
25   </properties>
26   <build>
27     <pluginManagement>
28       <plugins>
29         <plugin>
30           <groupId>org.jacoco</groupId>
31           <artifactId>jacoco-maven-plugin</artifactId>
32           <version>0.5.3.201107060350</version>
33         </plugin>
34       </plugins>
35     </pluginManagement>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.felix</groupId>
39         <artifactId>maven-bundle-plugin</artifactId>
40         <version>2.3.6</version>
41         <extensions>true</extensions>
42         <configuration>
43           <instructions>
44             <Include-Resource>
45             </Include-Resource>
46             <Export-Package>
47             </Export-Package>
48             <Import-Package>
49               org.opendaylight.controller.clustering.services,
50               org.opendaylight.controller.configuration,
51               org.opendaylight.controller.hosttracker,
52               org.opendaylight.controller.hosttracker.hostAware,
53               org.opendaylight.controller.switchmanager,
54               org.opendaylight.controller.sal.action,
55               org.opendaylight.controller.sal.core,
56               org.opendaylight.controller.sal.flowprogrammer,
57               org.opendaylight.controller.sal.match,
58               org.opendaylight.controller.sal.utils,
59               org.opendaylight.controller.sal.packet,
60               org.opendaylight.controller.forwardingrulesmanager,
61               javax.xml.bind.annotation,
62               javax.xml.bind,
63               org.apache.felix.dm,
64               org.apache.commons.lang3.builder,
65               org.osgi.service.component,
66               org.slf4j,
67               org.eclipse.osgi.framework.console,
68               org.osgi.framework
69             </Import-Package>
70             <Bundle-Activator>
71               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
72             </Bundle-Activator>
73             <Require-Bundle>
74               org.opendaylight.controller.hosttracker
75             </Require-Bundle>
76             <Service-Component>
77             </Service-Component>
78           </instructions>
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>