a145a3b4e179dcc9a9dea8c9df54cd526a84071e
[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.eclipse.xtend</groupId>
47         <artifactId>xtend-maven-plugin</artifactId>
48       </plugin>
49       <plugin>
50         <groupId>org.jacoco</groupId>
51         <artifactId>jacoco-maven-plugin</artifactId>
52         <configuration>
53           <includes>
54             <include>org.opendaylight.controller.*</include>
55           </includes>
56         </configuration>
57         <executions>
58           <execution>
59             <id>pre-test</id>
60             <goals>
61               <goal>prepare-agent</goal>
62             </goals>
63           </execution>
64           <execution>
65             <id>post-test</id>
66             <goals>
67               <goal>report</goal>
68             </goals>
69             <phase>test</phase>
70           </execution>
71         </executions>
72       </plugin>
73     </plugins>
74   </build>
75   <scm>
76     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
77     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
78     <tag>HEAD</tag>
79     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
80   </scm>
81
82 </project>