93c076dcba084ddd81616c691c8282ff9521378e
[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.1-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.implementation</artifactId>
18   <version>0.4.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             </Export-Package>
47             <Import-Package>
48               org.opendaylight.controller.switchmanager,
49               org.opendaylight.controller.clustering.services,
50               org.opendaylight.controller.configuration,
51               org.opendaylight.controller.sal.core,
52               org.opendaylight.controller.sal.utils,
53               org.opendaylight.controller.sal.packet,
54               org.opendaylight.controller.sal.reader,
55               org.opendaylight.controller.sal.inventory,
56               org.opendaylight.controller.statisticsmanager,
57               org.slf4j,
58               org.apache.felix.dm,
59               org.eclipse.osgi.framework.console,
60               org.osgi.framework,
61               org.apache.felix.service.command,
62               javax.xml.bind.annotation,
63               org.apache.commons.lang3.builder
64             </Import-Package>
65             <Bundle-Activator>
66               org.opendaylight.controller.switchmanager.internal.Activator
67             </Bundle-Activator>
68           </instructions>
69           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.jacoco</groupId>
74         <artifactId>jacoco-maven-plugin</artifactId>
75         <configuration>
76           <includes>org.opendaylight.controller.*</includes>
77         </configuration>
78         <executions>
79           <execution>
80             <id>pre-test</id>
81             <goals>
82               <goal>prepare-agent</goal>
83             </goals>
84           </execution>
85           <execution>
86             <id>post-test</id>
87             <phase>test</phase>
88             <goals>
89               <goal>report</goal>
90             </goals>
91           </execution>
92         </executions>
93       </plugin>
94     </plugins>
95   </build>
96   <dependencies>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>clustering.services</artifactId>
100       <version>0.5.0-SNAPSHOT</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>configuration</artifactId>
105       <version>0.4.1-SNAPSHOT</version>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.controller</groupId>
109       <artifactId>sal</artifactId>
110       <version>0.7.0-SNAPSHOT</version>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.controller</groupId>
114       <artifactId>switchmanager</artifactId>
115       <version>0.7.0-SNAPSHOT</version>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.controller</groupId>
119       <artifactId>statisticsmanager</artifactId>
120       <version>0.5.0-SNAPSHOT</version>
121     </dependency>
122     <dependency>
123       <groupId>junit</groupId>
124       <artifactId>junit</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>equinoxSDK381</groupId>
128       <artifactId>org.apache.felix.gogo.runtime</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>commons.logback_settings</artifactId>
133     </dependency>
134   </dependencies>
135 </project>