Incrementing versions by 0.1.0 for post-lithium master branch
[netvirt.git] / northbound / 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>northbound</artifactId>
22   <version>0.8.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <dependencies>
47     <dependency>
48       <groupId>com.fasterxml.jackson.core</groupId>
49       <artifactId>jackson-core</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.fasterxml.jackson.core</groupId>
53       <artifactId>jackson-databind</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.codehaus.enunciate</groupId>
57       <artifactId>enunciate-core-annotations</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.mockito</groupId>
61       <artifactId>mockito-core</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-api-mockito</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.powermock</groupId>
71       <artifactId>powermock-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.powermock</groupId>
76       <artifactId>powermock-module-junit4</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>commons.northbound</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>sal</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.ovsdb</groupId>
89       <artifactId>library</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.ovsdb</groupId>
93       <artifactId>plugin</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.ovsdb</groupId>
97       <artifactId>utils.servicehelper</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>com.google.guava</groupId>
101       <artifactId>guava</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>com.sun.jersey</groupId>
105       <artifactId>jersey-core</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.slf4j</groupId>
109       <artifactId>slf4j-api</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.slf4j</groupId>
113       <artifactId>slf4j-simple</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>junit</groupId>
117       <artifactId>junit</artifactId>
118       <scope>test</scope>
119     </dependency>
120
121   </dependencies>
122   <build>
123     <plugins>
124       <plugin>
125         <groupId>org.apache.felix</groupId>
126         <artifactId>maven-bundle-plugin</artifactId>
127         <version>${bundle.plugin.version}</version>
128         <extensions>true</extensions>
129         <configuration>
130           <instructions>
131             <Export-Package></Export-Package>
132             <Import-Package>org.opendaylight.controller.sal.utils,
133               org.opendaylight.controller.northbound.commons,
134               org.opendaylight.controller.northbound.commons.exception,
135               org.opendaylight.controller.northbound.commons.utils,
136               com.sun.jersey.spi.container.servlet,
137               org.opendaylight.controller.sal.core,
138               org.opendaylight.controller.sal.authorization,
139               org.opendaylight.ovsdb.plugin.api,
140               org.opendaylight.ovsdb.lib,
141               org.opendaylight.ovsdb.lib.jsonrpc,
142               org.opendaylight.ovsdb.lib.notation,
143               org.opendaylight.ovsdb.lib.operations,
144               org.opendaylight.ovsdb.lib.message,
145               org.opendaylight.ovsdb.lib.schema,
146               org.opendaylight.ovsdb.lib.schema.typed,
147               javax.ws.rs,
148               javax.ws.rs.core,
149               javax.xml.bind,
150               javax.xml.bind.annotation,
151               org.slf4j,
152               org.apache.catalina.filters,
153               !org.codehaus.enunciate.jaxrs,*</Import-Package>
154             <Export-Package></Export-Package>
155             <Web-ContextPath>/ovsdb/nb</Web-ContextPath>
156             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
157           </instructions>
158           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
159         </configuration>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-checkstyle-plugin</artifactId>
164       </plugin>
165       <plugin>
166         <groupId>org.codehaus.enunciate</groupId>
167         <artifactId>maven-enunciate-plugin</artifactId>
168         <version>${enunciate.version}</version>
169       </plugin>
170       <plugin>
171         <groupId>org.jacoco</groupId>
172         <artifactId>jacoco-maven-plugin</artifactId>
173       </plugin>
174     </plugins>
175   </build>
176 </project>