168dd14d10e20aa54b08a30a5417ed94737810ff
[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     </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37         <configuration>
38           <instructions>
39             <Bundle-Name>${project.name}</Bundle-Name>
40             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
41           </instructions>
42         </configuration>
43       </plugin>
44       <plugin>
45         <groupId>org.jacoco</groupId>
46         <artifactId>jacoco-maven-plugin</artifactId>
47         <configuration>
48           <includes>
49             <include>org.opendaylight.controller.*</include>
50           </includes>
51         </configuration>
52         <executions>
53           <execution>
54             <id>pre-test</id>
55             <goals>
56               <goal>prepare-agent</goal>
57             </goals>
58           </execution>
59           <execution>
60             <id>post-test</id>
61             <goals>
62               <goal>report</goal>
63             </goals>
64             <phase>test</phase>
65           </execution>
66         </executions>
67       </plugin>
68     </plugins>
69   </build>
70   <scm>
71     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
72     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
73     <tag>HEAD</tag>
74     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
75   </scm>
76
77 </project>