pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>com.github.stuxuhai</groupId>
  6. <artifactId>hdata</artifactId>
  7. <version>0.2.8</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>hdata-core</artifactId>
  11. <name>hdata-core</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.github.stuxuhai</groupId>
  15. <artifactId>hdata-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.google.guava</groupId>
  19. <artifactId>guava</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.lmax</groupId>
  23. <artifactId>disruptor</artifactId>
  24. <version>3.3.4</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-cli</groupId>
  28. <artifactId>commons-cli</artifactId>
  29. <version>1.3.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.carrotsearch</groupId>
  33. <artifactId>java-sizeof</artifactId>
  34. <version>0.0.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-lang3</artifactId>
  39. <version>3.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-configuration</groupId>
  43. <artifactId>commons-configuration</artifactId>
  44. <version>1.10</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-collections</groupId>
  48. <artifactId>commons-collections</artifactId>
  49. <version>3.2.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-beanutils</groupId>
  53. <artifactId>commons-beanutils</artifactId>
  54. <version>1.9.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.hydromatic</groupId>
  58. <artifactId>eigenbase-properties</artifactId>
  59. <version>1.1.5</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-digester3</artifactId>
  64. <version>3.2</version>
  65. </dependency>
  66. </dependencies>
  67. </project>