pom依赖

  1. <!-- jraft -->
  2. <dependency>
  3. <groupId>com.alipay.sofa</groupId>
  4. <artifactId>jraft-core</artifactId>
  5. <version>${version}</version>
  6. </dependency>
  7. <!-- jsr305 -->
  8. <dependency>
  9. <groupId>com.google.code.findbugs</groupId>
  10. <artifactId>jsr305</artifactId>
  11. <version>3.0.2</version>
  12. </dependency>
  13. <!-- bolt -->
  14. <dependency>
  15. <groupId>com.alipay.sofa</groupId>
  16. <artifactId>bolt</artifactId>
  17. <version>1.5.3</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alipay.sofa</groupId>
  21. <artifactId>hessian</artifactId>
  22. <version>3.3.6</version>
  23. </dependency>
  24. <!-- log -->
  25. <dependency>
  26. <groupId>org.slf4j</groupId>
  27. <artifactId>slf4j-api</artifactId>
  28. <version>1.7.21</version>
  29. </dependency>
  30. <!-- disruptor -->
  31. <dependency>
  32. <groupId>com.lmax</groupId>
  33. <artifactId>disruptor</artifactId>
  34. <version>3.3.7</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. <version>2.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-lang</groupId>
  43. <artifactId>commons-lang</artifactId>
  44. <version>2.6</version>
  45. </dependency>
  46. <!-- protobuf -->
  47. <dependency>
  48. <groupId>com.google.protobuf</groupId>
  49. <artifactId>protobuf-java</artifactId>
  50. <version>3.5.1</version>
  51. </dependency>
  52. <!-- protostuff -->
  53. <dependency>
  54. <groupId>io.protostuff</groupId>
  55. <artifactId>protostuff-core</artifactId>
  56. <version>1.6.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.protostuff</groupId>
  60. <artifactId>protostuff-runtime</artifactId>
  61. <version>1.6.0</version>
  62. </dependency>
  63. <!-- rocksdb -->
  64. <dependency>
  65. <groupId>org.rocksdb</groupId>
  66. <artifactId>rocksdbjni</artifactId>
  67. <version>5.14.2</version>
  68. </dependency>
  69. <!-- java thread affinity -->
  70. <dependency>
  71. <groupId>net.openhft</groupId>
  72. <artifactId>affinity</artifactId>
  73. <version>3.1.7</version>
  74. </dependency>
  75. <!-- metrics -->
  76. <dependency>
  77. <groupId>io.dropwizard.metrics</groupId>
  78. <artifactId>metrics-core</artifactId>
  79. <version>4.0.2</version>
  80. </dependency>