pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.aizuda</groupId>
  8. <artifactId>snail-job-client</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>snail-job-client-common</artifactId>
  13. <name>snail-job-client-common</name>
  14. <description>snail-job-client-common</description>
  15. <dependencies>
  16. <!-- preprocessor -->
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <optional>true</optional>
  21. </dependency>
  22. <!-- springboot -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-configuration-processor</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-aop</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-log4j2</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <!-- libs -->
  44. <dependency>
  45. <groupId>com.github.rholder</groupId>
  46. <artifactId>guava-retrying</artifactId>
  47. <exclusions>
  48. <exclusion>
  49. <artifactId>guava</artifactId>
  50. <groupId>com.google.guava</groupId>
  51. </exclusion>
  52. <exclusion>
  53. <artifactId>jsr305</artifactId>
  54. <groupId>com.google.code.findbugs</groupId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.guava</groupId>
  60. <artifactId>guava</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.grpc</groupId>
  64. <artifactId>grpc-netty-shaded</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.grpc</groupId>
  68. <artifactId>grpc-protobuf</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.grpc</groupId>
  72. <artifactId>grpc-stub</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.grpc</groupId>
  76. <artifactId>grpc-api</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.grpc</groupId>
  80. <artifactId>grpc-util</artifactId>
  81. </dependency>
  82. <!-- SnailJob -->
  83. <dependency>
  84. <groupId>com.aizuda</groupId>
  85. <artifactId>snail-job-common-core</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.aizuda</groupId>
  89. <artifactId>snail-job-common-log</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.fury</groupId>
  93. <artifactId>fury-core</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.github.luben</groupId>
  97. <artifactId>zstd-jni</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aizuda</groupId>
  101. <artifactId>snail-job-common-model</artifactId>
  102. </dependency>
  103. </dependencies>
  104. </project>