Code ReOrganization and Re-Architecture changes
[ovsdb.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
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.lib.table,
77               org.opendaylight.ovsdb.lib.notation,
78               org.opendaylight.ovsdb.plugin,
79               javax.ws.rs,
80               javax.ws.rs.core,
81               javax.xml.bind,
82               javax.xml.bind.annotation,
83               org.slf4j,
84               org.apache.catalina.filters,
85               com.fasterxml.jackson.databind.annotation,
86               com.fasterxml.jackson.annotation,
87               !org.codehaus.enunciate.jaxrs</Import-Package>
88             <Export-Package></Export-Package>
89             <Web-ContextPath>/ovsdb/nb/v2</Web-ContextPath>
90             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
91           </instructions>
92           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.codehaus.enunciate</groupId>
97         <artifactId>maven-enunciate-plugin</artifactId>
98         <version>${enunciate.version}</version>
99       </plugin>
100     </plugins>
101   </build>
102   <scm>
103     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
104     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
105     <tag>HEAD</tag>
106     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
107   </scm>
108 </project>