Merge "Bug 849: Fixed NPE in Translated Data Change Events."
[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
11   <artifactId>switchmanager</artifactId>
12   <version>0.7.1-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <properties>
16     <!-- Sonar properties using jacoco to retrieve integration test results -->
17     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
18     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
19     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
20   </properties>
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>configuration</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <scope>test</scope>
34     </dependency>
35   </dependencies>
36   <build>
37     <pluginManagement>
38       <plugins>
39         <plugin>
40           <groupId>org.jacoco</groupId>
41           <artifactId>jacoco-maven-plugin</artifactId>
42           <version>${jacoco.version}</version>
43         </plugin>
44       </plugins>
45     </pluginManagement>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <extensions>true</extensions>
51         <configuration>
52           <instructions>
53             <Export-Package>org.opendaylight.controller.switchmanager</Export-Package>
54             <Import-Package>org.opendaylight.controller.configuration,
55               org.opendaylight.controller.sal.core,
56               org.opendaylight.controller.sal.utils,
57               org.opendaylight.controller.sal.packet,
58               org.opendaylight.controller.sal.inventory,
59               org.slf4j,
60               javax.xml.bind.annotation</Import-Package>
61           </instructions>
62           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65       <plugin>
66         <groupId>org.jacoco</groupId>
67         <artifactId>jacoco-maven-plugin</artifactId>
68         <configuration>
69           <includes>
70             <include>org.opendaylight.controller.*</include>
71           </includes>
72         </configuration>
73         <executions>
74           <execution>
75             <id>pre-test</id>
76             <goals>
77               <goal>prepare-agent</goal>
78             </goals>
79           </execution>
80           <execution>
81             <id>post-test</id>
82             <goals>
83               <goal>report</goal>
84             </goals>
85             <phase>test</phase>
86           </execution>
87         </executions>
88       </plugin>
89     </plugins>
90   </build>
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
94     <tag>HEAD</tag>
95     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
96   </scm>
97 </project>