688e6ac09b25b29d8160ad05b10ef078430e1d37
[controller.git] / opendaylight / md-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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>compatibility-parent</artifactId>
10   <packaging>pom</packaging>
11   <name>MD-SAL to AD-SAL Adaptation Parent</name>
12
13   <modules>
14     <module>sal-compatibility</module>
15     <module>inventory-topology-compatibility</module>
16     <module>flow-management-compatibility</module>
17   </modules>
18
19   <dependencies>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-common-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller.model</groupId>
38       <artifactId>model-flow-service</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45   </dependencies>
46
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <configuration>
53           <instructions>
54             <Bundle-Name>${project.name}</Bundle-Name>
55             <Bundle-Activator>org.opendaylight.controller.sal.compability.ComponentActivator</Bundle-Activator>
56           </instructions>
57         </configuration>
58       </plugin>
59       <plugin>
60         <groupId>org.jacoco</groupId>
61         <artifactId>jacoco-maven-plugin</artifactId>
62         <configuration>
63           <includes>
64             <include>org.opendaylight.controller.*</include>
65           </includes>
66         </configuration>
67         <executions>
68           <execution>
69             <id>pre-test</id>
70             <goals>
71               <goal>prepare-agent</goal>
72             </goals>
73           </execution>
74           <execution>
75             <id>post-test</id>
76             <goals>
77               <goal>report</goal>
78             </goals>
79             <phase>test</phase>
80           </execution>
81         </executions>
82       </plugin>
83     </plugins>
84   </build>
85   <scm>
86     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
87     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
88     <tag>HEAD</tag>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
90   </scm>
91 </project>