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