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