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