525e7a4b014a533867a9e0e3779a829f726f5c66
[controller.git] / opendaylight / md-sal / sal-compability / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-compability</artifactId>
10   <name>MD-SAL to AD-SAL Adaptation</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   </scm>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>sal</artifactId>
21       <version>0.5.1-SNAPSHOT</version>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller.model</groupId>
25       <artifactId>model-flow-service</artifactId>
26       <version>1.0-SNAPSHOT</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-flow-statistics</artifactId>
31       <version>1.0-SNAPSHOT</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-common-util</artifactId>
36       <version>1.0-SNAPSHOT</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-binding-api</artifactId>
41       <version>1.0-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-common-util</artifactId>
46       <version>1.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>com.google.guava</groupId>
50       <artifactId>guava</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.eclipse.xtend</groupId>
54       <artifactId>org.eclipse.xtend.lib</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62   <packaging>bundle</packaging>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.eclipse.xtend</groupId>
68         <artifactId>xtend-maven-plugin</artifactId>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <configuration>
74           <instructions>
75             <Bundle-Name>${project.name}</Bundle-Name>
76             <Private-Package>
77               org.eclipse.xtend2.lib,
78               org.eclipse.xtend.lib,
79               org.eclipse.xtext.xbase.*
80             </Private-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84     </plugins>
85   </build>
86
87 </project>