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