Refactor of the OVSDB Plugin
[netvirt.git] / northbound / 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" 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.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10   <artifactId>northbound</artifactId>
11   <version>0.6.0-SNAPSHOT</version>
12   <name>OpenDaylight OVSDB Northbound APIs</name>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>com.fasterxml.jackson.core</groupId>
18       <artifactId>jackson-annotations</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.fasterxml.jackson.core</groupId>
22       <artifactId>jackson-core</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.fasterxml.jackson.core</groupId>
26       <artifactId>jackson-databind</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.codehaus.enunciate</groupId>
30       <artifactId>enunciate-core-annotations</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>commons.northbound</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.ovsdb</groupId>
42       <artifactId>library</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.ovsdb</groupId>
46       <artifactId>plugin</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.google.code.gson</groupId>
50       <artifactId>gson</artifactId>
51       <scope>compile</scope>
52     </dependency>
53     <dependency>
54       <groupId>com.google.guava</groupId>
55       <artifactId>guava</artifactId>
56     </dependency>
57
58   </dependencies>
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <version>${bundle.plugin.version}</version>
65         <extensions>true</extensions>
66         <configuration>
67           <instructions>
68             <Export-Package></Export-Package>
69             <Import-Package>org.opendaylight.controller.sal.utils,
70               org.opendaylight.controller.northbound.commons,
71               org.opendaylight.controller.northbound.commons.exception,
72               org.opendaylight.controller.northbound.commons.utils,
73               com.sun.jersey.spi.container.servlet,
74               org.opendaylight.controller.sal.core,
75               org.opendaylight.controller.sal.authorization,
76               org.opendaylight.ovsdb.plugin.api,
77               org.opendaylight.ovsdb.lib,
78               org.opendaylight.ovsdb.lib.jsonrpc,
79               org.opendaylight.ovsdb.lib.notation,
80               org.opendaylight.ovsdb.lib.operations,
81               org.opendaylight.ovsdb.lib.message,
82               org.opendaylight.ovsdb.lib.schema,
83               org.opendaylight.ovsdb.lib.schema.typed,
84               javax.ws.rs,
85               javax.ws.rs.core,
86               javax.xml.bind,
87               javax.xml.bind.annotation,
88               org.slf4j,
89               org.apache.catalina.filters,
90               !org.codehaus.enunciate.jaxrs,*</Import-Package>
91             <Export-Package></Export-Package>
92             <Web-ContextPath>/ovsdb/nb</Web-ContextPath>
93             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
94           </instructions>
95           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
96         </configuration>
97       </plugin>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-checkstyle-plugin</artifactId>
101       </plugin>
102       <plugin>
103         <groupId>org.codehaus.enunciate</groupId>
104         <artifactId>maven-enunciate-plugin</artifactId>
105         <version>${enunciate.version}</version>
106       </plugin>
107     </plugins>
108   </build>
109   <scm>
110     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
111     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
112     <tag>HEAD</tag>
113     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
114   </scm>
115 </project>