Bug 698 - Confingured controller script to set max memory to 1 GB if not defined
[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   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>commons.northbound</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31               org.opendaylight.controller.northbound.commons.exception,
32               org.opendaylight.controller.northbound.commons.types,
33               org.opendaylight.controller.northbound.commons.utils,
34               org.opendaylight.controller.northbound.commons
35             </Export-Package>
36             <Import-Package>
37               javax.ws.rs,
38               javax.ws.rs.ext,
39               javax.ws.rs.core,
40               javax.xml.bind,
41               javax.xml.bind.annotation,
42               org.objectweb.asm,
43               org.opendaylight.controller.sal.utils,
44               org.opendaylight.controller.sal.core,
45               org.opendaylight.controller.sal.authorization,
46               org.opendaylight.controller.containermanager,
47               org.opendaylight.controller.usermanager,
48               org.opendaylight.controller.switchmanager,
49               org.opendaylight.controller.northbound.bundlescanner,
50               org.osgi.framework,
51               org.osgi.service.packageadmin,
52               org.osgi.util.tracker,
53               javax.servlet.http,
54               com.fasterxml.jackson.core,
55               com.fasterxml.jackson.databind,
56               com.fasterxml.jackson.jaxrs.base,
57               com.fasterxml.jackson.jaxrs.json,
58               org.slf4j
59             </Import-Package>
60           </instructions>
61           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>containermanager</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>switchmanager</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>usermanager</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>bundlescanner</artifactId>
86     </dependency>
87
88      <dependency>
89       <groupId>com.fasterxml.jackson.core</groupId>
90       <artifactId>jackson-databind</artifactId>
91     </dependency>
92
93     <dependency>
94        <groupId>com.fasterxml.jackson.jaxrs</groupId>
95        <artifactId>jackson-jaxrs-json-provider</artifactId>
96     </dependency>
97
98       <dependency>
99          <groupId>com.fasterxml.jackson.jaxrs</groupId>
100          <artifactId>jackson-jaxrs-base</artifactId>
101       </dependency>
102
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106     </dependency>
107     <!-- Jersey for JAXRS -->
108     <dependency>
109       <groupId>com.sun.jersey</groupId>
110       <artifactId>jersey-core</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>com.sun.jersey</groupId>
114       <artifactId>jersey-server</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>com.sun.jersey</groupId>
118       <artifactId>jersey-client</artifactId>
119     </dependency>
120   </dependencies>
121 </project>