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