Merge "Enable SSL connection for ovsdb server."
[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.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10   <artifactId>northbound</artifactId>
11   <version>0.7.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     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63   </dependencies>
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <version>${bundle.plugin.version}</version>
70         <extensions>true</extensions>
71         <configuration>
72           <instructions>
73             <Export-Package></Export-Package>
74             <Import-Package>org.opendaylight.controller.sal.utils,
75               org.opendaylight.controller.northbound.commons,
76               org.opendaylight.controller.northbound.commons.exception,
77               org.opendaylight.controller.northbound.commons.utils,
78               com.sun.jersey.spi.container.servlet,
79               org.opendaylight.controller.sal.core,
80               org.opendaylight.controller.sal.authorization,
81               org.opendaylight.ovsdb.plugin.api,
82               org.opendaylight.ovsdb.lib,
83               org.opendaylight.ovsdb.lib.jsonrpc,
84               org.opendaylight.ovsdb.lib.notation,
85               org.opendaylight.ovsdb.lib.operations,
86               org.opendaylight.ovsdb.lib.message,
87               org.opendaylight.ovsdb.lib.schema,
88               org.opendaylight.ovsdb.lib.schema.typed,
89               javax.ws.rs,
90               javax.ws.rs.core,
91               javax.xml.bind,
92               javax.xml.bind.annotation,
93               org.slf4j,
94               org.apache.catalina.filters,
95               !org.codehaus.enunciate.jaxrs,*</Import-Package>
96             <Export-Package></Export-Package>
97             <Web-ContextPath>/ovsdb/nb</Web-ContextPath>
98             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
99           </instructions>
100           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
101         </configuration>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-checkstyle-plugin</artifactId>
106       </plugin>
107       <plugin>
108         <groupId>org.codehaus.enunciate</groupId>
109         <artifactId>maven-enunciate-plugin</artifactId>
110         <version>${enunciate.version}</version>
111       </plugin>
112     </plugins>
113   </build>
114   <scm>
115     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
116     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
117     <tag>HEAD</tag>
118     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
119   </scm>
120 </project>