542470acf15edecc1745dcc80efaa40353411ca9
[controller.git] / opendaylight / switchmanager / implementation / 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.implementation</artifactId>
12   <version>0.4.2-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>equinoxSDK381</groupId>
24       <artifactId>org.apache.felix.gogo.runtime</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>equinoxSDK381</groupId>
28       <artifactId>org.eclipse.osgi</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>clustering.services</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>configuration</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>statisticsmanager</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>switchmanager</artifactId>
53     </dependency>
54   </dependencies>
55   <build>
56     <pluginManagement>
57       <plugins>
58         <plugin>
59           <groupId>org.jacoco</groupId>
60           <artifactId>jacoco-maven-plugin</artifactId>
61           <version>${jacoco.version}</version>
62         </plugin>
63       </plugins>
64     </pluginManagement>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <version>${bundle.plugin.version}</version>
70         <extensions>true</extensions>
71         <configuration>
72           <instructions>
73             <Export-Package></Export-Package>
74             <Import-Package>org.opendaylight.controller.configuration,
75               org.opendaylight.controller.switchmanager,
76               org.opendaylight.controller.clustering.services,
77               org.opendaylight.controller.sal.core,
78               org.opendaylight.controller.sal.utils,
79               org.opendaylight.controller.sal.packet,
80               org.opendaylight.controller.sal.reader,
81               org.opendaylight.controller.sal.inventory,
82               org.opendaylight.controller.statisticsmanager,
83               org.slf4j,
84               org.apache.felix.dm,
85               org.eclipse.osgi.framework.console,
86               org.osgi.framework,
87               org.apache.felix.service.command,
88               javax.xml.bind.annotation,
89               org.apache.commons.lang3.builder</Import-Package>
90             <Bundle-Activator>org.opendaylight.controller.switchmanager.internal.Activator</Bundle-Activator>
91           </instructions>
92           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.jacoco</groupId>
97         <artifactId>jacoco-maven-plugin</artifactId>
98         <configuration>
99           <includes>
100             <include>org.opendaylight.controller.*</include>
101           </includes>
102         </configuration>
103         <executions>
104           <execution>
105             <id>pre-test</id>
106             <goals>
107               <goal>prepare-agent</goal>
108             </goals>
109           </execution>
110           <execution>
111             <id>post-test</id>
112             <goals>
113               <goal>report</goal>
114             </goals>
115             <phase>test</phase>
116           </execution>
117         </executions>
118       </plugin>
119     </plugins>
120   </build>
121   <scm>
122     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
123     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
124     <tag>HEAD</tag>
125     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
126   </scm>
127 </project>