e7faf735841441c67112042106c9b1eb6b13cfc4
[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.sal.connection,
66               org.opendaylight.controller.forwardingrulesmanager,
67               org.opendaylight.controller.connectionmanager,
68               javax.xml.bind.annotation,
69               javax.xml.bind,
70               org.apache.felix.dm,
71               org.apache.commons.lang3.builder,
72               org.osgi.service.component,
73               org.slf4j,
74               org.eclipse.osgi.framework.console,
75               org.osgi.framework
76             </Import-Package>
77             <Bundle-Activator>
78               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
79             </Bundle-Activator>
80             <Require-Bundle>
81               org.opendaylight.controller.hosttracker
82             </Require-Bundle>
83             <Service-Component>
84             </Service-Component>
85           </instructions>
86           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
87         </configuration>
88       </plugin>
89       <plugin>
90         <groupId>org.jacoco</groupId>
91         <artifactId>jacoco-maven-plugin</artifactId>
92         <configuration>
93           <includes>org.opendaylight.controller.*</includes>
94         </configuration>
95         <executions>
96           <execution>
97             <id>pre-test</id>
98             <goals>
99               <goal>prepare-agent</goal>
100             </goals>
101           </execution>
102           <execution>
103             <id>post-test</id>
104             <phase>test</phase>
105             <goals>
106               <goal>report</goal>
107             </goals>
108           </execution>
109         </executions>
110       </plugin>
111     </plugins>
112   </build>
113   <dependencies>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>hosttracker</artifactId>
117       <version>0.4.0-SNAPSHOT</version>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.controller</groupId>
121       <artifactId>configuration</artifactId>
122       <version>0.4.0-SNAPSHOT</version>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.controller</groupId>
126       <artifactId>clustering.services</artifactId>
127       <version>0.4.0-SNAPSHOT</version>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.controller</groupId>
131       <artifactId>switchmanager</artifactId>
132       <version>0.5.0-SNAPSHOT</version>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>sal</artifactId>
137       <version>0.5.0-SNAPSHOT</version>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.controller</groupId>
141       <artifactId>sal.connection</artifactId>
142       <version>0.1.0-SNAPSHOT</version>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.controller</groupId>
146       <artifactId>forwardingrulesmanager</artifactId>
147       <version>0.4.0-SNAPSHOT</version>
148     </dependency>
149     <dependency>
150       <groupId>junit</groupId>
151       <artifactId>junit</artifactId>
152       <version>4.8.1</version>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.controller</groupId>
157       <artifactId>connectionmanager</artifactId>
158       <version>0.1.0-SNAPSHOT</version>
159     </dependency>
160   </dependencies>
161 </project>