Gracefully stop HT threads when the bundle is being stopped (cache terminated exception)
[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>0.5.3.201107060350</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             <Include-Resource>
49             </Include-Resource>
50             <Export-Package>
51             </Export-Package>
52             <Import-Package>
53               org.opendaylight.controller.clustering.services,
54               org.opendaylight.controller.configuration,
55               org.opendaylight.controller.hosttracker,
56               org.opendaylight.controller.hosttracker.hostAware,
57               org.opendaylight.controller.switchmanager,
58               org.opendaylight.controller.sal.action,
59               org.opendaylight.controller.sal.core,
60               org.opendaylight.controller.sal.flowprogrammer,
61               org.opendaylight.controller.sal.match,
62               org.opendaylight.controller.sal.utils,
63               org.opendaylight.controller.sal.packet,
64               org.opendaylight.controller.forwardingrulesmanager,
65               javax.xml.bind.annotation,
66               javax.xml.bind,
67               org.apache.felix.dm,
68               org.apache.commons.lang3.builder,
69               org.osgi.service.component,
70               org.slf4j,
71               org.eclipse.osgi.framework.console,
72               org.osgi.framework
73             </Import-Package>
74             <Bundle-Activator>
75               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
76             </Bundle-Activator>
77             <Require-Bundle>
78               org.opendaylight.controller.hosttracker
79             </Require-Bundle>
80             <Service-Component>
81             </Service-Component>
82           </instructions>
83           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
84         </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.jacoco</groupId>
88         <artifactId>jacoco-maven-plugin</artifactId>
89         <configuration>
90           <includes>org.opendaylight.controller.*</includes>
91         </configuration>
92         <executions>
93           <execution>
94             <id>pre-test</id>
95             <goals>
96               <goal>prepare-agent</goal>
97             </goals>
98           </execution>
99           <execution>
100             <id>post-test</id>
101             <phase>test</phase>
102             <goals>
103               <goal>report</goal>
104             </goals>
105           </execution>
106         </executions>
107       </plugin>
108     </plugins>
109   </build>
110   <dependencies>
111     <dependency>
112       <groupId>org.opendaylight.controller</groupId>
113       <artifactId>hosttracker</artifactId>
114       <version>0.4.0-SNAPSHOT</version>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>configuration</artifactId>
119       <version>0.4.0-SNAPSHOT</version>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.controller</groupId>
123       <artifactId>clustering.services</artifactId>
124       <version>0.4.0-SNAPSHOT</version>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.controller</groupId>
128       <artifactId>switchmanager</artifactId>
129       <version>0.5.0-SNAPSHOT</version>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.controller</groupId>
133       <artifactId>sal</artifactId>
134       <version>0.5.0-SNAPSHOT</version>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.controller</groupId>
138       <artifactId>forwardingrulesmanager</artifactId>
139       <version>0.4.0-SNAPSHOT</version>
140     </dependency>
141     <dependency>
142       <groupId>junit</groupId>
143       <artifactId>junit</artifactId>
144       <version>4.8.1</version>
145       <scope>test</scope>
146     </dependency>
147   </dependencies>
148 </project>