Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / switchmanager / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>switchmanager</artifactId>
18   <version>0.7.1-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <properties>
22     <!-- Sonar properties using jacoco to retrieve integration test results -->
23     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
24     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
25     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
26   </properties>
27   <build>
28     <pluginManagement>
29       <plugins>
30         <plugin>
31           <groupId>org.jacoco</groupId>
32           <artifactId>jacoco-maven-plugin</artifactId>
33           <version>${jacoco.version}</version>
34         </plugin>
35       </plugins>
36     </pluginManagement>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.felix</groupId>
40         <artifactId>maven-bundle-plugin</artifactId>
41         <version>${bundle.plugin.version}</version>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Export-Package>
46               org.opendaylight.controller.switchmanager
47             </Export-Package>
48             <Import-Package>
49               org.opendaylight.controller.configuration,
50               org.opendaylight.controller.sal.core,
51               org.opendaylight.controller.sal.utils,
52               org.opendaylight.controller.sal.packet,
53               org.opendaylight.controller.sal.inventory,
54               org.slf4j,
55               javax.xml.bind.annotation
56             </Import-Package>
57           </instructions>
58           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
59         </configuration>
60       </plugin>
61       <plugin>
62         <groupId>org.jacoco</groupId>
63         <artifactId>jacoco-maven-plugin</artifactId>
64         <configuration>
65           <includes>org.opendaylight.controller.*</includes>
66         </configuration>
67         <executions>
68           <execution>
69             <id>pre-test</id>
70             <goals>
71               <goal>prepare-agent</goal>
72             </goals>
73           </execution>
74           <execution>
75             <id>post-test</id>
76             <phase>test</phase>
77             <goals>
78               <goal>report</goal>
79             </goals>
80           </execution>
81         </executions>
82       </plugin>
83     </plugins>
84   </build>
85   <dependencies>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>configuration</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>junit</groupId>
96       <artifactId>junit</artifactId>
97       <scope>test</scope>
98     </dependency>
99   </dependencies>
100 </project>