3ed1edf7d68b3fb8617af9689b92b93b9b80441d
[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.eclipse.xtend</groupId>
26       <artifactId>org.eclipse.xtend.lib</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-common-util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller.model</groupId>
42       <artifactId>model-flow-service</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49   </dependencies>
50
51   <build>
52     <plugins>
53       <plugin>
54         <groupId>org.apache.felix</groupId>
55         <artifactId>maven-bundle-plugin</artifactId>
56         <configuration>
57           <instructions>
58             <Bundle-Name>${project.name}</Bundle-Name>
59             <Bundle-Activator>org.opendaylight.controller.sal.compability.ComponentActivator</Bundle-Activator>
60           </instructions>
61         </configuration>
62       </plugin>
63       <plugin>
64         <groupId>org.eclipse.xtend</groupId>
65         <artifactId>xtend-maven-plugin</artifactId>
66       </plugin>
67       <plugin>
68         <groupId>org.jacoco</groupId>
69         <artifactId>jacoco-maven-plugin</artifactId>
70         <configuration>
71           <includes>
72             <include>org.opendaylight.controller.*</include>
73           </includes>
74         </configuration>
75         <executions>
76           <execution>
77             <id>pre-test</id>
78             <goals>
79               <goal>prepare-agent</goal>
80             </goals>
81           </execution>
82           <execution>
83             <id>post-test</id>
84             <goals>
85               <goal>report</goal>
86             </goals>
87             <phase>test</phase>
88           </execution>
89         </executions>
90       </plugin>
91     </plugins>
92   </build>
93   <scm>
94     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
95     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
96     <tag>HEAD</tag>
97     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
98   </scm>
99 </project>