Incrementing versions by 0.1.0 for post-lithium master branch
[netvirt.git] / plugin-mdsal-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>plugin-mdsal-adapter</artifactId>
22   <version>1.2.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.apache.felix</groupId>
28       <artifactId>org.apache.felix.dependencymanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>com.google.guava</groupId>
32       <artifactId>guava</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>org.osgi.core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.slf4j</groupId>
40       <artifactId>slf4j-api</artifactId>
41     </dependency>
42     <!-- Yang Models -->
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>concepts</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>yang-binding</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-common</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools.model</groupId>
57       <artifactId>ietf-inet-types</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller.model</groupId>
61       <artifactId>model-inventory</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.openflowplugin.model</groupId>
65       <artifactId>model-flow-service</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools.model</groupId>
69       <artifactId>yang-ext</artifactId>
70     </dependency>
71     <!-- Controller Dependencies -->
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-common-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.ovsdb</groupId>
86       <artifactId>library</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.ovsdb</groupId>
90       <artifactId>plugin</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.ovsdb</groupId>
94       <artifactId>schema.openvswitch</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <version>2.4.0</version>
109         <extensions>true</extensions>
110         <configuration>
111           <instructions>
112             <Import-Package>
113               org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.*,
114               org.opendaylight.controller.sal.binding.api,
115               org.opendaylight.ovsdb.plugin.api,
116               org.apache.felix.dm,
117               org.slf4j,
118               org.eclipse.osgi.framework.console,
119               org.osgi.framework,
120               javax.net.ssl,
121               *
122             </Import-Package>
123             <Embed-Transitive>true</Embed-Transitive>
124             <Bundle-Activator>
125               org.opendaylight.ovsdb.plugin.md.Activator
126             </Bundle-Activator>
127            </instructions>
128           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
129         </configuration>
130       </plugin>
131       <plugin>
132         <groupId>org.opendaylight.yangtools</groupId>
133         <artifactId>yang-maven-plugin</artifactId>
134       </plugin>
135       <plugin>
136         <groupId>org.codehaus.mojo</groupId>
137         <artifactId>build-helper-maven-plugin</artifactId>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-checkstyle-plugin</artifactId>
142       </plugin>
143       <plugin>
144         <groupId>org.jacoco</groupId>
145         <artifactId>jacoco-maven-plugin</artifactId>
146       </plugin>
147     </plugins>
148   </build>
149
150 </project>