Version bump for master after cutting of stable/lithium branch
[openflowplugin.git] / legacy / 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.openflowplugin</groupId>
6     <artifactId>openflowplugin-parent</artifactId>
7     <version>0.2.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.legacy</groupId>
11   <artifactId>legacy-parent</artifactId>
12   <packaging>pom</packaging>
13   <name>MD-SAL to AD-SAL Adaptation Parent</name>
14
15   <modules>
16     <module>sal-compatibility</module>
17     <module>features-legacy</module>
18   </modules>
19
20   <dependencies>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal</artifactId>
28       <version>0.10.0-SNAPSHOT</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-binding-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-common-util</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     </plugins>
58   </build>
59
60   <scm>
61     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
63     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
64     <tag>HEAD</tag>
65   </scm>
66
67 </project>