Merge "Stop creating new Boolean, move to use valueOf method"
[controller.git] / opendaylight / northbound / commons / pom.xml
index d52bedf819b4556329c9c322fb3eb612c3197444..dda6a0f975714be2bb9d4a5aefc2582ecc63787a 100644 (file)
@@ -7,8 +7,12 @@
     <version>1.4.0-SNAPSHOT</version>
     <relativePath>../../commons/opendaylight</relativePath>
   </parent>
+  <scm>
+    <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
+    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
+    <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
+  </scm>
 
-  <groupId>org.opendaylight.controller</groupId>
   <artifactId>commons.northbound</artifactId>
   <version>0.4.0-SNAPSHOT</version>
   <packaging>bundle</packaging>
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>2.3.6</version>
+        <version>${bundle.plugin.version}</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>
             <Export-Package>
               org.opendaylight.controller.northbound.commons.exception,
+              org.opendaylight.controller.northbound.commons.types,
+              org.opendaylight.controller.northbound.commons.utils,
               org.opendaylight.controller.northbound.commons
             </Export-Package>
             <Import-Package>
               javax.ws.rs,
+              javax.ws.rs.ext,
               javax.ws.rs.core,
+              javax.xml.bind,
+              javax.xml.bind.annotation,
+              org.objectweb.asm,
               org.opendaylight.controller.sal.utils,
+              org.opendaylight.controller.sal.core,
+              org.opendaylight.controller.sal.authorization,
+              org.opendaylight.controller.containermanager,
               org.opendaylight.controller.usermanager,
-              javax.servlet.http, 
-              org.slf4j,                              
+              org.opendaylight.controller.switchmanager,
+              org.opendaylight.controller.northbound.bundlescanner,
+              org.osgi.framework,
+              org.osgi.service.packageadmin,
+              org.osgi.util.tracker,
+              javax.servlet.http,
+              org.codehaus.jackson,
+              org.codehaus.jackson.jaxrs,
+              org.codehaus.jackson.map,
+              org.slf4j
             </Import-Package>
           </instructions>
+          <manifestLocation>${project.basedir}/META-INF</manifestLocation>
         </configuration>
       </plugin>
     </plugins>
   </build>
   <dependencies>
+    <dependency>
+      <groupId>org.opendaylight.controller</groupId>
+      <artifactId>switchmanager</artifactId>
+      <version>0.5.0-SNAPSHOT</version>
+    </dependency>
       <dependency>
       <groupId>org.opendaylight.controller</groupId>
       <artifactId>sal</artifactId>
-      <version>0.4.0-SNAPSHOT</version>
+      <version>0.5.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.opendaylight.controller</groupId>
       <artifactId>usermanager</artifactId>
       <version>0.4.0-SNAPSHOT</version>
     </dependency>
+    <dependency>
+        <groupId>org.opendaylight.controller</groupId>
+        <artifactId>bundlescanner</artifactId>
+        <version>0.4.0-SNAPSHOT</version>
+    </dependency>
   </dependencies>
 </project>