pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aizuda</groupId>
  7. <artifactId>snail-job-client</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>snail-job-client-retry-core</artifactId>
  12. <name>snail-job-client-retry-core</name>
  13. <description>snail-job-client-retry-core</description>
  14. <packaging>jar</packaging>
  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-starter-aop</artifactId>
  31. </dependency>
  32. <!-- libs -->
  33. <dependency>
  34. <groupId>com.google.guava</groupId>
  35. <artifactId>guava</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>error_prone_annotations</artifactId>
  39. <groupId>com.google.errorprone</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.googlecode.aviator</groupId>
  45. <artifactId>aviator</artifactId>
  46. <scope>provided</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>QLExpress</artifactId>
  52. <scope>provided</scope>
  53. <optional>true</optional>
  54. </dependency>
  55. <!-- SnailJob -->
  56. <dependency>
  57. <groupId>com.aizuda</groupId>
  58. <artifactId>snail-job-common-core</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.aizuda</groupId>
  62. <artifactId>snail-job-common-model</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.aizuda</groupId>
  66. <artifactId>snail-job-client-common</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>