Bug-835:Reserve ports should be logical ports
[controller.git] / opendaylight / md-sal / compatibility / sal-compatibility / 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>compatibility-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-compatibility</artifactId>
10   <packaging>bundle</packaging>
11   <name>MD-SAL to AD-SAL Adaptation</name>
12
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.controller</groupId>
16       <artifactId>clustering.services</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>sal-binding-util</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller.model</groupId>
24       <artifactId>model-flow-statistics</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller.model</groupId>
28       <artifactId>model-topology</artifactId>
29       <version>1.1-SNAPSHOT</version>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <configuration>
39           <instructions>
40             <Bundle-Name>${project.name}</Bundle-Name>
41             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
42           </instructions>
43         </configuration>
44       </plugin>
45       <plugin>
46         <groupId>org.jacoco</groupId>
47         <artifactId>jacoco-maven-plugin</artifactId>
48         <configuration>
49           <includes>
50             <include>org.opendaylight.controller.*</include>
51           </includes>
52         </configuration>
53         <executions>
54           <execution>
55             <id>pre-test</id>
56             <goals>
57               <goal>prepare-agent</goal>
58             </goals>
59           </execution>
60           <execution>
61             <id>post-test</id>
62             <goals>
63               <goal>report</goal>
64             </goals>
65             <phase>test</phase>
66           </execution>
67         </executions>
68       </plugin>
69     </plugins>
70   </build>
71   <scm>
72     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
73     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
74     <tag>HEAD</tag>
75     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
76   </scm>
77
78 </project>