External api proposal
[openflowplugin.git] / legacy / 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.openflowplugin.legacy</groupId>
6     <artifactId>legacy-parent</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <artifactId>sal-compatibility</artifactId>
11   <packaging>bundle</packaging>
12   <name>MD-SAL to AD-SAL Adaptation</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>clustering.services</artifactId>
18       <version>0.6.0-SNAPSHOT</version>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-binding-util</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.openflowplugin.model</groupId>
26       <artifactId>model-flow-statistics</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-topology</artifactId>
31     </dependency>
32   </dependencies>
33
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <configuration>
40           <instructions>
41             <Bundle-Name>${project.name}</Bundle-Name>
42             <Bundle-Activator>org.opendaylight.openflowplugin.legacy.sal.compatibility.ComponentActivator</Bundle-Activator>
43           </instructions>
44         </configuration>
45       </plugin>
46     </plugins>
47   </build>
48   
49   <scm>
50     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
51     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
52     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
53     <tag>HEAD</tag>
54   </scm>
55
56 </project>