restructure and base modules for different features
[vpnservice.git] / mdsalutil / mdsalutil-api / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11     
12     <modelVersion>4.0.0</modelVersion>
13     <groupId>org.opendaylight.vpnservice</groupId>
14     <artifactId>mdsalutil-api</artifactId>
15     <version>0.0.1-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <build>
19         <plugins>
20             <plugin>
21                 <groupId>org.apache.felix</groupId>
22                 <artifactId>maven-bundle-plugin</artifactId>
23                 <version>${bundle.plugin.version}</version>
24                 <extensions>true</extensions>
25                 <configuration>
26                     <instructions>
27                         <Export-Package>
28                             org.opendaylight.vpnservice.mdsalutil,
29                             org.opendaylight.vpnservice.mdsalutil.interfaces
30                         </Export-Package>
31                         <!--Import-Package>
32                             com.google.common.*,
33                             org.opendaylight.yang.*,
34                             org.opendaylight.yangtools.*,
35                             org.opendaylight.controller.sal.binding.api.*,
36                             org.opendaylight.controller.md.sal.common.api.*,
37                             org.opendaylight.controller.sal.common
38                          </Import-Package-->
39                     </instructions>
40                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
41                 </configuration>
42             </plugin>
43         </plugins>
44     </build>
45     <dependencies>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller.model</groupId>
52             <artifactId>model-flow-service</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller.model</groupId>
56             <artifactId>model-flow-base</artifactId>
57         </dependency>
58        <!--  <dependency>
59             <groupId>org.opendaylight.controller.model</groupId>
60             <artifactId>model-flow-management</artifactId>
61         </dependency>-->
62         <dependency>
63             <groupId>org.opendaylight.controller.model</groupId>
64             <artifactId>model-inventory</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller.model</groupId>
68             <artifactId>model-flow-statistics</artifactId>
69         </dependency>
70         <!--
71         <dependency>
72             <groupId>org.opendaylight.controller.adsal</groupId>
73             <artifactId>sal</artifactId>
74         </dependency>
75         -->
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-common</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>com.google.guava</groupId>
82             <artifactId>guava</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller.model</groupId>
86             <artifactId>model-topology</artifactId>
87         </dependency>
88        
89                      
90     </dependencies>
91 </project>