Merge "Add replication capability to Shard"
[controller.git] / opendaylight / northbound / commons / 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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>commons.northbound</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>com.fasterxml.jackson.core</groupId>
17       <artifactId>jackson-databind</artifactId>
18     </dependency>
19
20     <dependency>
21       <groupId>com.fasterxml.jackson.jaxrs</groupId>
22       <artifactId>jackson-jaxrs-base</artifactId>
23     </dependency>
24
25     <dependency>
26       <groupId>com.fasterxml.jackson.jaxrs</groupId>
27       <artifactId>jackson-jaxrs-json-provider</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.sun.jersey</groupId>
31       <artifactId>jersey-client</artifactId>
32     </dependency>
33     <!-- Jersey for JAXRS -->
34     <dependency>
35       <groupId>com.sun.jersey</groupId>
36       <artifactId>jersey-core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>com.sun.jersey</groupId>
40       <artifactId>jersey-server</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>bundlescanner</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>containermanager</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>switchmanager</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>usermanager</artifactId>
66     </dependency>
67
68     <dependency>
69       <groupId>ch.qos.logback</groupId>
70       <artifactId>logback-classic</artifactId>
71       <scope>test</scope>
72     </dependency>
73
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Export-Package>org.opendaylight.controller.northbound.commons.exception,
85               org.opendaylight.controller.northbound.commons.types,
86               org.opendaylight.controller.northbound.commons.utils,
87               org.opendaylight.controller.northbound.commons.query,
88               org.opendaylight.controller.northbound.commons</Export-Package>
89             <Import-Package>javax.ws.rs,
90               javax.ws.rs.ext,
91               javax.ws.rs.core,
92               javax.xml.bind,
93               javax.xml.bind.annotation,
94               org.opendaylight.controller.sal.utils,
95               org.opendaylight.controller.sal.core,
96               org.opendaylight.controller.sal.authorization,
97               org.opendaylight.controller.containermanager,
98               org.opendaylight.controller.usermanager,
99               org.opendaylight.controller.switchmanager,
100               org.opendaylight.controller.northbound.bundlescanner,
101               org.osgi.framework,
102               org.osgi.service.packageadmin,
103               org.osgi.util.tracker,
104               javax.servlet.http,
105               com.fasterxml.jackson.core,
106               com.fasterxml.jackson.databind,
107               com.fasterxml.jackson.jaxrs.base,
108               com.fasterxml.jackson.jaxrs.json,
109               org.slf4j</Import-Package>
110           </instructions>
111           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
112         </configuration>
113       </plugin>
114
115       <plugin>
116         <groupId>org.codehaus.mojo</groupId>
117         <artifactId>build-helper-maven-plugin</artifactId>
118         <executions>
119           <execution>
120             <id>add-source</id>
121             <goals>
122               <goal>add-source</goal>
123             </goals>
124             <phase>generate-sources</phase>
125             <configuration>
126               <sources>
127                 <source>${project.build.directory}/generated-sources/javacc</source>
128               </sources>
129             </configuration>
130           </execution>
131         </executions>
132       </plugin>
133
134       <plugin>
135         <groupId>org.codehaus.mojo</groupId>
136         <artifactId>javacc-maven-plugin</artifactId>
137         <version>2.6</version>
138         <executions>
139           <execution>
140             <id>javacc</id>
141             <goals>
142               <goal>javacc</goal>
143             </goals>
144           </execution>
145         </executions>
146       </plugin>
147
148     </plugins>
149   </build>
150   <scm>
151     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
152     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
153     <tag>HEAD</tag>
154     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
155   </scm>
156 </project>