Merge "Add pax exam schema integration tests"
[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>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.mockito</groupId>
34       <artifactId>mockito-core</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.powermock</groupId>
39       <artifactId>powermock-api-mockito</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.powermock</groupId>
44       <artifactId>powermock-module-junit4</artifactId>
45       <scope>test</scope>
46       </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>commons.northbound</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>library</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.ovsdb</groupId>
61       <artifactId>plugin</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>com.google.code.gson</groupId>
65       <artifactId>gson</artifactId>
66       <scope>compile</scope>
67     </dependency>
68     <dependency>
69       <groupId>com.google.guava</groupId>
70       <artifactId>guava</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>junit</groupId>
74       <artifactId>junit</artifactId>
75       <scope>test</scope>
76     </dependency>
77
78   </dependencies>
79   <build>
80     <plugins>
81       <plugin>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>maven-bundle-plugin</artifactId>
84         <version>${bundle.plugin.version}</version>
85         <extensions>true</extensions>
86         <configuration>
87           <instructions>
88             <Export-Package></Export-Package>
89             <Import-Package>org.opendaylight.controller.sal.utils,
90               org.opendaylight.controller.northbound.commons,
91               org.opendaylight.controller.northbound.commons.exception,
92               org.opendaylight.controller.northbound.commons.utils,
93               com.sun.jersey.spi.container.servlet,
94               org.opendaylight.controller.sal.core,
95               org.opendaylight.controller.sal.authorization,
96               org.opendaylight.ovsdb.plugin.api,
97               org.opendaylight.ovsdb.lib,
98               org.opendaylight.ovsdb.lib.jsonrpc,
99               org.opendaylight.ovsdb.lib.notation,
100               org.opendaylight.ovsdb.lib.operations,
101               org.opendaylight.ovsdb.lib.message,
102               org.opendaylight.ovsdb.lib.schema,
103               org.opendaylight.ovsdb.lib.schema.typed,
104               javax.ws.rs,
105               javax.ws.rs.core,
106               javax.xml.bind,
107               javax.xml.bind.annotation,
108               org.slf4j,
109               org.apache.catalina.filters,
110               !org.codehaus.enunciate.jaxrs,*</Import-Package>
111             <Export-Package></Export-Package>
112             <Web-ContextPath>/ovsdb/nb</Web-ContextPath>
113             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
114           </instructions>
115           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
116         </configuration>
117       </plugin>
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-checkstyle-plugin</artifactId>
121       </plugin>
122       <plugin>
123         <groupId>org.codehaus.enunciate</groupId>
124         <artifactId>maven-enunciate-plugin</artifactId>
125         <version>${enunciate.version}</version>
126       </plugin>
127       <plugin>
128         <groupId>org.jacoco</groupId>
129         <artifactId>jacoco-maven-plugin</artifactId>
130       </plugin>
131     </plugins>
132   </build>
133   <scm>
134     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
135     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
136     <tag>HEAD</tag>
137     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
138   </scm>
139 </project>