Merge "Add MD-SAL Adapter for the OVSDB Plugin"
[ovsdb.git] / plugin-mdsal-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <parent>
6     <artifactId>commons</artifactId>
7     <groupId>org.opendaylight.ovsdb</groupId>
8     <version>1.2.0-SNAPSHOT</version>
9     <relativePath>../commons/parent/pom.xml</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <artifactId>plugin-mdsal-adapter</artifactId>
14   <name>OpenDaylight OVSDB Plugin MD_SAL Adapter</name>
15   <version>1.0.0-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <dependencies>
19     <!-- Yang Models -->
20     <dependency>
21       <groupId>org.opendaylight.yangtools</groupId>
22       <artifactId>yang-binding</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.yangtools.model</groupId>
26       <artifactId>ietf-inet-types</artifactId>
27       <version>2010.09.24.4-SNAPSHOT</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller.model</groupId>
31       <artifactId>model-inventory</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller.model</groupId>
35       <artifactId>model-flow-service</artifactId>
36     </dependency>
37     <!-- Controller Dependencies -->
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-binding-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.ovsdb</groupId>
48       <artifactId>library</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>plugin</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66         <version>2.3.6</version>
67         <extensions>true</extensions>
68         <configuration>
69           <instructions>
70             <Import-Package>
71               org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.*,
72               org.opendaylight.controller.sal.binding.api,
73               org.opendaylight.ovsdb.plugin.api,
74               org.apache.felix.dm,
75               org.slf4j,
76               org.eclipse.osgi.framework.console,
77               org.osgi.framework,
78               javax.net.ssl,
79               *
80             </Import-Package>
81             <Embed-Transitive>true</Embed-Transitive>
82             <Bundle-Activator>
83               org.opendaylight.ovsdb.plugin.md.Activator
84             </Bundle-Activator>
85            </instructions>
86           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
87         </configuration>
88       </plugin>
89       <plugin>
90         <groupId>org.opendaylight.yangtools</groupId>
91         <artifactId>yang-maven-plugin</artifactId>
92       </plugin>
93       <plugin>
94         <groupId>org.codehaus.mojo</groupId>
95         <artifactId>build-helper-maven-plugin</artifactId>
96       </plugin>
97       <plugin>
98         <groupId>org.apache.maven.plugins</groupId>
99         <artifactId>maven-checkstyle-plugin</artifactId>
100       </plugin>
101     </plugins>
102   </build>
103
104 </project>