networkstatic

Untitled

Jul 22nd, 2013
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.47 KB | None | 0 0
  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.ovsdb</artifactId>
  7.    <version>1.0.0-SNAPSHOT</version>
  8.    <relativePath>../commons/opendaylight</relativePath>
  9.  </parent>
  10. <artifactId>ovsdb</artifactId>
  11. <version>0.4.0-SNAPSHOT</version>
  12. <packaging>bundle</packaging>
  13.  
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.felix</groupId>
  18. <artifactId>maven-bundle-plugin</artifactId>
  19. <version>2.3.6</version>
  20. <extensions>true</extensions>
  21. <configuration>
  22. <instructions>
  23. <Import-Package>
  24. org.opendaylight.controller.sal.packet,
  25. org.opendaylight.controller.sal.action,
  26. org.opendaylight.controller.sal.discovery,
  27. org.opendaylight.controller.sal.topology,
  28. org.opendaylight.controller.sal.core,
  29. org.opendaylight.controller.sal.flowprogrammer,
  30. org.opendaylight.controller.sal.reader,
  31. org.opendaylight.controller.sal.inventory,
  32. org.opendaylight.controller.sal.match,
  33. org.opendaylight.controller.sal.utils,
  34. org.opendaylight.controller.sal.configuration,
  35. org.opendaylight.controller.sal.connection,
  36. org.apache.commons.lang3.builder,
  37. org.apache.commons.lang3.tuple,
  38. org.apache.felix.dm,
  39. org.slf4j,
  40. org.eclipse.osgi.framework.console,
  41. org.osgi.framework,
  42. com.fasterxml.jackson.core,
  43. com.fasterxml.jackson.databind,
  44. com.fasterxml.jackson.databind.node,
  45. com.fasterxml.jackson.annotation,
  46. javax.net.ssl,
  47. *
  48. </Import-Package>
  49. <Embed-Dependency>jsonrpc4j,httpclient,commons-codec,httpcore-nio,javax.servlet-api</Embed-Dependency>
  50. <Embed-Transitive>
  51. true
  52. </Embed-Transitive>
  53. <Bundle-Activator>
  54. org.opendaylight.ovsdb.internal.Activator
  55. </Bundle-Activator>
  56. </instructions>
  57. <manifestLocation>${project.basedir}/META-INF</manifestLocation>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. <repositories>
  63. <repository>
  64. <id>jsonrpc4j-webdav-maven-repo</id>
  65. <name>jsonrpc4j maven repository</name>
  66. <url>http://jsonrpc4j.googlecode.com/svn/maven/repo/</url>
  67. <layout>default</layout>
  68. </repository>
  69. </repositories>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.opendaylight.controller</groupId>
  73. <artifactId>sal</artifactId>
  74. <version>0.5.0-SNAPSHOT</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.opendaylight.controller.thirdparty</groupId>
  78. <artifactId>org.openflow.openflowj</artifactId>
  79. <version>1.0.2-SNAPSHOT</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>junit</groupId>
  83. <artifactId>junit</artifactId>
  84. <version>4.8.1</version>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.googlecode</groupId>
  89. <artifactId>jsonrpc4j</artifactId>
  90. <version>0.28</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.fasterxml.jackson.core</groupId>
  94. <artifactId>jackson-annotations</artifactId>
  95. <version>2.0.2</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.fasterxml.jackson.core</groupId>
  99. <artifactId>jackson-core</artifactId>
  100. <version>2.0.2</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.fasterxml.jackson.core</groupId>
  104. <artifactId>jackson-databind</artifactId>
  105. <version>2.0.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.portlet</groupId>
  109. <artifactId>portlet-api</artifactId>
  110. <version>2.0</version>
  111. </dependency>
  112.  
  113. <!--
  114. | spring dependencies
  115. +-->
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-core</artifactId>
  119. <version>${spring.version}</version>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-context</artifactId>
  125. <version>${spring.version}</version>
  126. <optional>true</optional>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework</groupId>
  130. <artifactId>spring-web</artifactId>
  131. <version>${spring.version}</version>
  132. <optional>true</optional>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-test</artifactId>
  137. <version>${spring.version}</version>
  138. <scope>test</scope>
  139. </dependency>
  140.  
  141. <!--
  142. | apache http client
  143. +-->
  144. <dependency>
  145. <groupId>commons-codec</groupId>
  146. <artifactId>commons-codec</artifactId>
  147. <version>1.4</version>
  148. <optional>true</optional>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.httpcomponents</groupId>
  152. <artifactId>httpcore-nio</artifactId>
  153. <version>4.2.1</version>
  154. <optional>true</optional>
  155. </dependency>
  156.  
  157. <!--
  158. | Servlet
  159. +-->
  160. <dependency>
  161. <groupId>javax.servlet</groupId>
  162. <artifactId>javax.servlet-api</artifactId>
  163. <version>3.1-b06</version>
  164. <scope>provided</scope>
  165. </dependency>
  166.  
  167. <!--
  168. | test dependencies
  169. +-->
  170. <dependency>
  171. <groupId>junit</groupId>
  172. <artifactId>junit</artifactId>
  173. <version>4.10</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.jmock</groupId>
  178. <artifactId>jmock-junit4</artifactId>
  179. <version>2.5.1</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.jmock</groupId>
  184. <artifactId>jmock</artifactId>
  185. <version>2.5.1</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.eclipse.jetty</groupId>
  190. <artifactId>jetty-server</artifactId>
  191. <version>9.0.0.RC0</version>
  192. <scope>test</scope>
  193. <exclusions>
  194. <exclusion>
  195. <artifactId>javax.servlet</artifactId>
  196. <groupId>org.eclipse.jetty.orbit</groupId>
  197. </exclusion>
  198. </exclusions>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.eclipse.jetty</groupId>
  202. <artifactId>jetty-servlet</artifactId>
  203. <version>9.0.0.RC0</version>
  204. <scope>test</scope>
  205. <exclusions>
  206. <exclusion>
  207. <artifactId>javax.servlet</artifactId>
  208. <groupId>org.eclipse.jetty.orbit</groupId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. </dependencies>
  213. </project>
Advertisement
Add Comment
Please, Sign In to add comment